Skip to content

Instantly share code, notes, and snippets.

@shibby360
Last active April 9, 2022 21:59
Show Gist options
  • Save shibby360/589587169a74caec98dc75f496fa17a2 to your computer and use it in GitHub Desktop.
Save shibby360/589587169a74caec98dc75f496fa17a2 to your computer and use it in GitHub Desktop.
"Hello World"s
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
console.log('Hello World!')
print('Hello World!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment