diff options
-rw-r--r-- | helloworld.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/helloworld.c b/helloworld.c index 7a56f4d..95b46ba 100644 --- a/helloworld.c +++ b/helloworld.c @@ -1,7 +1,6 @@ #include <stdio.h> int main() { - printf("Hello, Galaxy!\n"); - printf("Hello, Universe!\n"); + printf("Hello, Galaxy and Universe\n"); return 0; } |