Skip to content

Instantly share code, notes, and snippets.

View ehsanmasdar's full-sized avatar

Ehsan Asdar ehsanmasdar

View GitHub Profile

Keybase proof

I hereby claim:

  • I am ehsanmasdar on github.
  • I am ehsanmasdar (https://keybase.io/ehsanmasdar) on keybase.
  • I have a public key whose fingerprint is A0CE 1FB7 DB33 E1A2 7212 6925 3353 830B FCE3 FE07

To claim this, I am signing this object:

@ehsanmasdar
ehsanmasdar / main.cpp
Created September 21, 2014 23:27
My first project, learning C!
//what commands to include (header)
#include <iostream>
//using standard library
using namespace std;
//function main, returns intiger
int main()
//start program
{
//C Out \n=new line
cout << "Hello world!\n";