lib: Split collections into readable and writable
[nit.git] / tests / example_string.nit
index 5371270..006efff 100644 (file)
@@ -27,7 +27,7 @@ printn("The value of a is: ", a, ".\n")
 # Second way: Build a string and display it.
 # Pro: Eiffel way (rigourous).
 # Con: Eiffel way (heavy).
-var s = "The value of a is: "
+var s = new Buffer.from("The value of a is: ")
 s.append(a.to_s)
 s.append(".\n")
 printn(s)