From 9d5ce23cbd03b9cb4a6ed8e564a2ae2c57927ac9 Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Sun, 10 Jan 2021 22:25:33 -0800 Subject: [PATCH] Updated hello.c from putch() to printf(). --- hello.c | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/hello.c b/hello.c index 8c52dc9..9309eb6 100644 --- a/hello.c +++ b/hello.c @@ -7,18 +7,5 @@ void hello(void) { wait(01000); - putch('H'); - putch('e'); - putch('l'); - putch('l'); - putch('o'); - putch(','); - putch(' '); - putch('W'); - putch('o'); - putch('r'); - putch('l'); - putch('d'); - putch('!'); - putch('\n'); + printf("Hello, World!\n"); } -- 2.20.1