From f749c63d802bbaf17649a9e2ca32a8bbad65239a Mon Sep 17 00:00:00 2001 From: mmatalone Date: Thu, 19 Oct 2017 21:48:05 -0600 Subject: [PATCH] Complete problems --- HelloToTheUniverse/Greeting.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HelloToTheUniverse/Greeting.swift b/HelloToTheUniverse/Greeting.swift index 26688e6..d1db4d0 100644 --- a/HelloToTheUniverse/Greeting.swift +++ b/HelloToTheUniverse/Greeting.swift @@ -14,7 +14,9 @@ class Greeting { // We created the function for you! Press command + u to run the tests. - func helloUniverse() -> String { + func helloUniverse() -> String { + print("My name is Mike and I can fly") + return "Hello Universe!" }