Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
12
Dependencies/Python/Lib/test/test_gdb/gdb_sample.py
vendored
Normal file
12
Dependencies/Python/Lib/test/test_gdb/gdb_sample.py
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
# Sample script for use by test_gdb
|
||||
|
||||
def foo(a, b, c):
|
||||
bar(a=a, b=b, c=c)
|
||||
|
||||
def bar(a, b, c):
|
||||
baz(a, b, c)
|
||||
|
||||
def baz(*args):
|
||||
id(42)
|
||||
|
||||
foo(1, 2, 3)
|
Reference in New Issue
Block a user