From f5d990834621ad947dc1ce1f69cbb74b5227808b Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Mon, 28 Oct 2013 06:45:19 -0700 Subject: [PATCH] String literal tests. --- test/string_literals.wren | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test/string_literals.wren diff --git a/test/string_literals.wren b/test/string_literals.wren new file mode 100644 index 00000000..5028809a --- /dev/null +++ b/test/string_literals.wren @@ -0,0 +1,4 @@ +io.write("".count) // expect: 0 +io.write("a string") // expect: a string + +// TODO(bob): Escapes.