Skip to content

Instantly share code, notes, and snippets.

@DalyaG
Created May 10, 2020 13:10
Show Gist options
  • Save DalyaG/a8511cddb6e1d5b0db270cf91b3c21af to your computer and use it in GitHub Desktop.
Save DalyaG/a8511cddb6e1d5b0db270cf91b3c21af to your computer and use it in GitHub Desktop.
Hello World in C++
// Hello World
/* By Dalya G */
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment