changeset 78:cb7cb64e4929

Update garf.c committer: GitHub <noreply@github.com>
author Paper <37962225+mrpapersonic@users.noreply.github.com>
date Mon, 04 Jul 2022 07:01:44 -0400
parents 81f95f11fe39
children bc2e83fbfbce
files garf.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/garf.c	Sat Jun 25 22:13:08 2022 -0400
+++ b/garf.c	Mon Jul 04 07:01:44 2022 -0400
@@ -4,12 +4,12 @@
 
 int main(void) {
     char answer[255];
-    std::cout << "would you like to monetize 1123.best?: ";
+    print("would you like to monetize 1123.best?: ");
     fgets(answer, sizeof(answer), stdin);
     if(strcmp(answer, "yes") == 0) {
-        std::cout << "it's a yes!";
+        printf("it's a yes!");
     } else {
-        std::cout << "it's a yes!";
+        printf("it's a yes!");
     }
     return 0;
 }