Files
gtav-src/tools_ng/bin/python/App/Lib/test/gdb_sample.py
T
2025-09-29 00:52:08 +02:00

13 lines
168 B
Python
Executable File

# Sample script for use by test_gdb.py
def foo(a, b, c):
bar(a, b, c)
def bar(a, b, c):
baz(a, b, c)
def baz(*args):
print(42)
foo(1, 2, 3)