今天早上我下载了最新版本的Boo,我正在尝试使用该语言。我的用例需要的功能之一是Boo的字符串插值。但是,我根本无法让它工作。
这是我的测试代码(其中一些是直接从Boo网站复制的):
print System.DateTime.Now
title = "My Demo Site"
print title
print "$(title)"
print """
<html>
<header> $title </header>
</html>
"""
name = "Santa Claus"
print "Hello, $name!"
now = "IMPORTANT"
print("Tomorrow will be $now")
print("""
----
Life, the Universe and Everything: $(len('answer to life the universe and everything')).
----
""")
和我的输出:
3/31/2015 10:25:37 AM
My Demo Site
$(title)
<html>
<header> $title </header>
</html>
Hello, $name!
Tomorrow will be $now
----
Life, the Universe and Everything: $(len('answer to life the universe and everything')).
----
我做错了什么?