From 2f82968554a30aa459328d073e31eefe79c9b54a Mon Sep 17 00:00:00 2001 From: Steven Degutis Date: Fri, 16 Mar 2012 06:52:39 -0500 Subject: [PATCH] stuff --- about_strings.go | 2 +- setup_koans_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/about_strings.go b/about_strings.go index 39b224b..d8914e3 100644 --- a/about_strings.go +++ b/about_strings.go @@ -4,7 +4,7 @@ import "fmt" func testStrings() { assert("a" + __string__ == "abc") // string concatenation need not be difficult - assert(len("abc") == __int__) // and bounds are thoroughly checked at compile time + assert(len("abc") == __int__) // and bounds are thoroughly checked assert("abc"[0] == __byte__) // their contents are reminiscent of C diff --git a/setup_koans_test.go b/setup_koans_test.go index 4d700f9..d00f40f 100644 --- a/setup_koans_test.go +++ b/setup_koans_test.go @@ -21,10 +21,10 @@ func TestKoans(t *testing.T) { //testStrings() //testArrays() //testSlices() - testControlFlow() + //testControlFlow() + testEnumeration() // TODO: ie, gameplan - //testEnumeration() //testFiles() //testVariadicFunctions() //testAnonymousFunctions()