aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/ScriptInterpreter/Python/Inputs/hello.split
blob: 510d5f77ec15c38814935059908d40022cb31233 (plain)
1
2
3
4
5
6
7
8
9
10
#--- hello.in
command script import -c baz.hello
#--- hello.py
import lldb

def hello(debugger, command, result, internal_dict):
    print("Hello, World!")

def __lldb_init_module(debugger, internal_dict):
    debugger.HandleCommand('command script add -f baz.hello.hello hello')