1
0
mirror of https://github.com/sgmarz/osblog.git synced 2024-11-24 02:16:19 +04:00

Change wording of helloworld.cpp so it's recognizable when printed to the screen.

This commit is contained in:
Stephen Marz 2020-04-25 21:24:21 -04:00
parent 1627cc7733
commit 0c649f5370

View File

@ -3,6 +3,6 @@
int main() int main()
{ {
printf("Hello World\n"); printf("I'm a C++ program, and I'm running in user space. How about a big, Hello World\n");
return 0; return 0;
} }