8 lines
105 B
C++
Raw Normal View History

2018-11-27 15:43:32 +08:00
#include<iostream>
int main(int,char **)
{
std::cout<<"hello,world!"<<std::endl;
return 0;
}