fork download
  1. def f(huita=[]):
  2. if huita:
  3. print("You're not my first Sychev")
  4. return
  5. huita.append('huita')
  6.  
  7. f()
  8. f()
Success #stdin #stdout 0.03s 9160KB
stdin
Standard input is empty
stdout
You're not my first Sychev