github.com/stealthrocket/wzprof@v0.2.1-0.20230830205924-5fa86be5e5b3/testdata/python/simple.py (about)

     1  def a():
     2      print("world")
     3      d = bytearray(100)
     4      print(len(d))
     5  
     6  def b():
     7      a()
     8  
     9  def c():
    10      print("hello")
    11      b()
    12      print("!")
    13  
    14  if __name__ == "__main__":
    15      c()