print hello world in different languages
Python:
print("hello world")
JavaScript:
console.log("hello world")
Csharp / C#:
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello World!");
System.Console.ReadLine();
}
}
}
Java:
public class hello{
public static void main(String[] args){
System.out.println("Hello world!");
}
}