summaryrefslogblamecommitdiff
path: root/hw1/bin/helloworld.cpp
blob: 4a1b8e4ffc13162bd77d989c2bf506dfe0ae96c7 (plain) (tree)
1
2
3
4
5
6
7






                                           
#include <iostream>

int main(int argc, char** argv)
{
  std::cout << "Hello World." << std::endl;
  return(0);
}