[Swift-commit] r3518 - trunk/tests/language/working

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Tue Aug 10 16:22:15 CDT 2010


Author: wozniak
Date: 2010-08-10 16:22:14 -0500 (Tue, 10 Aug 2010)
New Revision: 3518

Modified:
   trunk/tests/language/working/005-procedure-invocation.swift
Log:
Quick fix


Modified: trunk/tests/language/working/005-procedure-invocation.swift
===================================================================
--- trunk/tests/language/working/005-procedure-invocation.swift	2010-08-10 21:21:39 UTC (rev 3517)
+++ trunk/tests/language/working/005-procedure-invocation.swift	2010-08-10 21:22:14 UTC (rev 3518)
@@ -1,7 +1,7 @@
 
-echo(int i) {
-app { echo i ; }
+app echo(int i) {
+  echo i;
 }
 
-int greetings;
+int greetings = 34;
 echo(greetings);




More information about the Swift-commit mailing list