Skip to content

Instantly share code, notes, and snippets.

@sandeepraju
Created April 9, 2012 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandeepraju/2342605 to your computer and use it in GitHub Desktop.
Save sandeepraju/2342605 to your computer and use it in GitHub Desktop.
helloworld
// This file is a part of 'helloworld' project
// Copyright (c) 2012 by Sandeep Raju <sandeeprajup@gmail.com>
// Title : Program to print 'hello, world'
// Created : 20.06.2012 | Wednesday
// Author : Sandeep Raju <sandeeprajup@gmail.com>
#include <iostream>
int main(int argc, char* argv[])
{
std::cout << "hello, world" << std::endl;
return 0;
}
@sandeepraju
Copy link
Author

hello world

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment