[Swift-commit] r7412 - SwiftApps/tryswift/scripts
davidk at ci.uchicago.edu
davidk at ci.uchicago.edu
Wed Dec 11 13:10:19 CST 2013
Author: davidk
Date: 2013-12-11 13:10:19 -0600 (Wed, 11 Dec 2013)
New Revision: 7412
Modified:
SwiftApps/tryswift/scripts/002-helloworld.html
SwiftApps/tryswift/scripts/002-helloworld.swift
Log:
Some cleanup/simplification
Modified: SwiftApps/tryswift/scripts/002-helloworld.html
===================================================================
--- SwiftApps/tryswift/scripts/002-helloworld.html 2013-12-11 18:26:31 UTC (rev 7411)
+++ SwiftApps/tryswift/scripts/002-helloworld.html 2013-12-11 19:10:19 UTC (rev 7412)
@@ -47,7 +47,6 @@
<h3>Exercises</h3>
<ul>
<li>Change the text from "Hello world!" to "Hello Swift!"</li>
-<li>Pass an int to echo instead of a string</li>
<li>Change the name of the output file</li>
</ul>
Modified: SwiftApps/tryswift/scripts/002-helloworld.swift
===================================================================
--- SwiftApps/tryswift/scripts/002-helloworld.swift 2013-12-11 18:26:31 UTC (rev 7411)
+++ SwiftApps/tryswift/scripts/002-helloworld.swift 2013-12-11 19:10:19 UTC (rev 7412)
@@ -6,4 +6,4 @@
}
file out <"out.txt">;
-out = echo("Testing");
+out = echo("Hello world!");
More information about the Swift-commit
mailing list