1script foobar = 40 + 7
2script print(foobar)
3script d = lldb.SBDebugger.Create()
4script d:HandleCommand("script foobar = 40 + 2")
5script print(foobar)
6script d:HandleCommand("script print(foobar)")
7