xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/Inputs/independent_state.in (revision 45c971f7eef18ef2b77a5f64133dbd7bd5939d5f)
1*45c971f7SJonas Devliegherescript foobar = 40 + 7
2*45c971f7SJonas Devliegherescript print(foobar)
3*45c971f7SJonas Devliegherescript d = lldb.SBDebugger.Create()
4*45c971f7SJonas Devliegherescript d:HandleCommand("script foobar = 40 + 2")
5*45c971f7SJonas Devliegherescript print(foobar)
6*45c971f7SJonas Devliegherescript d:HandleCommand("script print(foobar)")
7