fork download
  1. sub pow {
  2. return (shift) ** (shift), @_
  3. }
  4. sub add {
  5. return (shift) + (shift), @_
  6. }
  7. sub root {
  8. }
  9. print root add pow 3, 2, pow 4, 2 //this is evil
Success #stdin #stdout 0s 17496KB
stdin
Standard input is empty
stdout
5