dev/cpp/hello/hello.cpp

10 lines
126 B
C++

#include <iostream>
int main(int argc, char * argv[])
{
std::cout<<"Hello, world!"<<std::endl;
int a = 3.14;
return 0;
}