diff --git a/index.html b/index.html index b3a0d4c..2cff859 100644 --- a/index.html +++ b/index.html @@ -157,13 +157,13 @@

Calling a function:

let retValue = jediGreet("old friend", "Force")
- println(retValue) + print(retValue)
- println(retValue.farewell) + print(retValue.farewell)
- println(retValue.mayTheForceBeWithYou) + print(retValue.mayTheForceBeWithYou)
@@ -237,7 +237,7 @@

Variadic functions

  for color in colors {
-     println("\(color)") +     print("\(color)")
  }