diff --git a/snippets/Basics/swift/hello-world.swift b/snippets/Basics/swift/hello-world.swift index 93e02c0..d8e57d0 100644 --- a/snippets/Basics/swift/hello-world.swift +++ b/snippets/Basics/swift/hello-world.swift @@ -1,6 +1,3 @@ -# Title: Print Hello World -# Topic: Basics -# Language: swift -# Example: see bottom - -// Print Hello World - placeholder in swift +// Swift Hello, World! +// 'print' is the standard function for writing output in Swift. +print("Hello, World!")