Files
seer/tests/hellopythonmi/HelloWorld.py
T
2023-09-30 17:14:34 -05:00

14 lines
242 B
Python

class HelloWorld (gdb.Command):
"""Greet the whole world."""
def __init__ (self):
super (HelloWorld, self).__init__ ("hello-world", gdb.COMMAND_USER)
def invoke (self, arg, from_tty):
print ("Hello, World!")
HelloWorld ()