Answers for "hello world"

PHP
2

hello world

class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
Posted by: Guest on October-05-2020
27

hello world

print("Hello World")
Posted by: Guest on November-24-2019
1

hello world

// I can't believe there is no grepper answer here!

// Here is Java hello world:

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
Posted by: Guest on September-29-2021
1

hello world

// Objective-C hello world

#import <Foundation/Foundation.h>

int main(int argc, char * argv[]) {
  @autoreleasepool {
    NSLog (@"Hello, World");
  }
}
Posted by: Guest on September-29-2021
2

hello world

echo("hello world");
Posted by: Guest on February-06-2021
2

hello world

#include <iostream>
int main(){
cout << "Hello World!";
return 0;
}
Posted by: Guest on May-01-2021
1

hello world

Hello World!
Posted by: Guest on January-29-2021
1

hello world

<p>Hello World </p>
Posted by: Guest on January-21-2021
3

hello world

//This is a simple Hello World program.

public class hello world {
	public static void main(Strin[] args) {
     	System.out.println("Hello World"); 
    }
}
Posted by: Guest on April-08-2020
2

hello world

document.write("Hello World");
console.log("Hello World");
Posted by: Guest on January-02-2021

Browse Popular Code Answers by Language