From 87259445a72f9da7100f4982a0f0cabfe161998e Mon Sep 17 00:00:00 2001 From: Brahim ELMSSILHA Date: Thu, 4 May 2017 20:30:39 +0100 Subject: [PATCH] adding print to Greeting func --- HelloToTheUniverse/Greeting.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/HelloToTheUniverse/Greeting.swift b/HelloToTheUniverse/Greeting.swift index 26688e6..b94c860 100644 --- a/HelloToTheUniverse/Greeting.swift +++ b/HelloToTheUniverse/Greeting.swift @@ -14,7 +14,8 @@ class Greeting { // We created the function for you! Press command + u to run the tests. - func helloUniverse() -> String { + func helloUniverse() -> String { + print("Hello swfit this is brahim") return "Hello Universe!" }