mirror of
https://github.com/Gers2017/cpp.js.git
synced 2024-11-29 10:18:43 -06:00
12 lines
174 B
C++
12 lines
174 B
C++
#include <cstdio>
|
|
|
|
int main()
|
|
{
|
|
// This is comment
|
|
// return 1
|
|
printf("Hello from c++\n\n");
|
|
printf("Hi rust!!!!\n");
|
|
printf("123123\n");
|
|
return 0;
|
|
}
|