Answers for "print hello world in different languages"

0

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!");
	}
}
Posted by: Guest on February-05-2022

Browse Popular Code Answers by Language