fork download
  1. a()
  2.  
  3. def a():
  4. result = b()
  5. return result
  6.  
  7. def b():
  8. return 'foo'
  9.  
Runtime error #stdin #stdout #stderr 0.01s 9008KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "prog.py", line 1, in <module>
NameError: name 'a' is not defined