From c5b60fb12ad66326d27d4f49880d265da7a1b202 Mon Sep 17 00:00:00 2001 From: Eric Li Date: Sun, 30 Dec 2018 23:23:25 -0500 Subject: [PATCH] Add print statement --- .../xcshareddata/IDEWorkspaceChecks.plist | 8 ++++++++ HelloToTheUniverse/Greeting.swift | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 HelloToTheUniverse.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/HelloToTheUniverse.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/HelloToTheUniverse.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 00000000..18d98100 --- /dev/null +++ b/HelloToTheUniverse.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/HelloToTheUniverse/Greeting.swift b/HelloToTheUniverse/Greeting.swift index 26688e67..a7154d67 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 World!") return "Hello Universe!" }