From 95a0687c1afb7f8f81e30f957cf3aedc4835d67d Mon Sep 17 00:00:00 2001 From: Steve Manchir Date: Tue, 17 Apr 2012 14:18:53 -0400 Subject: [PATCH] Make the greeting more science-y. A Muon is a lepton. --- src/hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello.c b/src/hello.c index 86013a2..2b0ba48 100644 --- a/src/hello.c +++ b/src/hello.c @@ -9,7 +9,7 @@ int main (int argc, char **argv) { printf("\n"); printf("Enter Your Name: "); scanf("%s", in); - printf("Buon Giorno, %s!\n", in); + printf("Muon Giorno, %s!\n", in); return (0); }