mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
14 lines
242 B
Python
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 ()
|
||
|
|
|