summaryrefslogtreecommitdiff
path: root/helloworld.cpp
blob: 8474a1e92126d4f9e1d734e324a793c050d9676c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>

int return5()
{
   return 5 ;
}

int main() {
   //int x { }, y { } ;
   std::cout << return5() << '\n' ;
   return 0 ;
}
bgstack15