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