mirror of
https://github.com/Gers2017/cpp.js.git
synced 2024-10-31 22:27:04 -05: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;
|
|
}
|