Skip to content

Instantly share code, notes, and snippets.

@achmizs
Created December 26, 2017 03:33
Show Gist options
  • Save achmizs/21f5e20fb0be90cdd4551f4184153cc5 to your computer and use it in GitHub Desktop.
Save achmizs/21f5e20fb0be90cdd4551f4184153cc5 to your computer and use it in GitHub Desktop.
Hello, world!
#include <stdio.h>
main( )
{
printf("hello, world\n");
}
#include <iostream.h>
main()
{
cout << "Hello World!" << endl;
return 0;
}
println("Hello, world!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment