例如,我们有这个 Hy 代码:
(print "Hy, world!")
我们有两段 Python 代码。第一件:
print("Some python code")
第二张:
print("Some other python code")
我们怎样才能做出这样的事情:
print("Some python code")
(print "Hy, world!")
print("Some other python code")
还请包括适当的进口。我还没有找到正确的导入方式Hy
。