From cec08b17a173d21bc91d0f42ae5497dd486b254c Mon Sep 17 00:00:00 2001 From: Acidic Date: Sun, 16 Dec 2018 11:23:37 -0500 Subject: [PATCH] Complete problems --- .../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..caf70ffa 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("Man if I had a dollar for every time a programming tutorial started with a Hello World function..") return "Hello Universe!" }