summaryrefslogtreecommitdiff
path: root/hw4/bin/helloworld.cpp
blob: 4911d87dc8cf0c8e59ec8823ca10f213794e2a70 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <iostream>
#include <cassert>

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