mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
0c4c56ff39
README.cosmo contains the necessary links.
12 lines
153 B
Python
12 lines
153 B
Python
# 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):
|
|
id(42)
|
|
|
|
foo(1, 2, 3)
|