xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/Inputs/independent_state.in (revision 45c971f7eef18ef2b77a5f64133dbd7bd5939d5f)
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