Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

hello world in different programming languages

//java
System.out.println("hello world")
 
//python
print("hello world")

//c#
Console.WriteLine("hello world")
//js(javascript)
console.log("hello world")
//also js(javascript)
alert("hello world")
//c++
cout << "hello world" << endl;
//html
hello world
 
PREVIOUS NEXT
Tagged: #world #programming #languages
ADD COMMENT
Topic
Name
2+9 =