hello_world

python

1
print('hello world')

julia

1
println("hello world")

ruby

1
p 'hello world'

r

1
print('hello world')

matlab

1
disp('hello world')

c

1
2
3
4
5
6
7
#include <stdio.h>
#include <stdlib.h>
int main(int argc,char** argv)
{
printf("hello world\n");
return 0;
}

c++

1
2
3
4
5
6
7
#include <iostream>
using namespace std;
int main(int argc,char *argv[])
{
cout<<"hello world"<<endl;
return 0;
}

java

1
2
3
4
5
public class hw {
public static void main(String[] args) {
System.out.println("hello world");
}
}

C Sharp

1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("hello world");
}
}
}