1# RUN: %lldb -s %s --script-language lua 2>&1 | FileCheck %s 2script 3do 4local a = 123 5print(a) 6end 7# CHECK: 123 8str = 'hello there!' 9function callme() 10print(str) 11end 12callme() 13# CHECK: hello there! 14# CHECK-NOT: error 15