From 283ba9e84a5b2d7ef8383573b40178b156568720 Mon Sep 17 00:00:00 2001 From: Iggy Drougge Date: Fri, 5 Aug 2016 19:19:48 +0200 Subject: [PATCH] println -> print --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)")
  }