[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / ScriptInterpreter / Python / Inputs / hello.split
blob510d5f77ec15c38814935059908d40022cb31233
1 #--- hello.in
2 command script import -c baz.hello
3 #--- hello.py
4 import lldb
6 def hello(debugger, command, result, internal_dict):
7     print("Hello, World!")
9 def __lldb_init_module(debugger, internal_dict):
10     debugger.HandleCommand('command script add -f baz.hello.hello hello')