more than 10 years C++ experience
C++ hello world
#include <iostream> int main(int argc, char* argv[]) { std::cout << "hello world" << std::endl; }
Ruby version hello world
def hello puts "hello world" end