Add some unit tests for in-string eval

This commit is contained in:
Jonathan Turner 2009-09-12 14:55:14 +00:00
parent 5092713876
commit 0fbb7c44bd
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,3 @@
var bob = 5.5
print("${bob}")
print("val: ${5.5 + 2.5} and ${bob + 2.5}")

View File

@ -0,0 +1,2 @@
5.5
val: 8 and 8