1# REQUIRES: lua
2# RUN: cat %s | %lldb --script-language lua 2>&1 | FileCheck %s
3script
4debugger = lldb.SBDebugger.Create()
5print("debugger is valid:", tostring(debugger:IsValid()))
6# CHECK: debugger is valid: true
7