From 2c2fec95f784142cb2a0ee1f5ca529a9251c15e8 Mon Sep 17 00:00:00 2001 From: Audun Wilhelmsen Date: Sun, 4 May 2014 12:28:36 -0700 Subject: [PATCH] Formatting changes to the cheat-sheet --- Nimrod-for-C-programmers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nimrod-for-C-programmers.md b/Nimrod-for-C-programmers.md index 9c38499..70ee57e 100644 --- a/Nimrod-for-C-programmers.md +++ b/Nimrod-for-C-programmers.md @@ -158,7 +158,7 @@ s[11] = '!';
-var s: string = "Hello World."
+var s = "Hello World."
 var s0: char = s[0] # 'H'
 var t = s # Copy of s
 s[11] = '!'