diff --git a/HelloToTheUniverse.xcodeproj/project.pbxproj b/HelloToTheUniverse.xcodeproj/project.pbxproj index 3ec2e16..032cd7e 100644 --- a/HelloToTheUniverse.xcodeproj/project.pbxproj +++ b/HelloToTheUniverse.xcodeproj/project.pbxproj @@ -37,7 +37,7 @@ 5B59BC881D6E243800DFE0AD /* HelloToTheUniverseTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = HelloToTheUniverseTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 5B59BC8C1D6E243800DFE0AD /* HelloToTheUniverseTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HelloToTheUniverseTests.swift; sourceTree = ""; }; 5B59BC8E1D6E243800DFE0AD /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 5B59BC991D6E25EF00DFE0AD /* Greeting.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Greeting.swift; sourceTree = ""; }; + 5B59BC991D6E25EF00DFE0AD /* Greeting.swift */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.swift; path = Greeting.swift; sourceTree = ""; tabWidth = 2; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ diff --git a/HelloToTheUniverse/Greeting.swift b/HelloToTheUniverse/Greeting.swift index 26688e6..9efbce4 100644 --- a/HelloToTheUniverse/Greeting.swift +++ b/HelloToTheUniverse/Greeting.swift @@ -14,9 +14,11 @@ class Greeting { // We created the function for you! Press command + u to run the tests. - func helloUniverse() -> String { - return "Hello Universe!" - } - + func helloUniverse() -> String { + print("stay trippy, authority isn't necessary ") + + return "Hello Universe!" + + } }