brintos

brintos / llvm-project-archived public Read only

0
0
Text · 215 B · c83ff5e Raw
15 lines · plain
1# RUN: %lldb -s %s --script-language lua 2>&1 | FileCheck %s2script3do4local a = 1235print(a)6end7# CHECK: 1238str = 'hello there!'9function callme()10print(str)11end12callme()13# CHECK: hello there!14# CHECK-NOT: error15