fork download
  1. (
  2. defun fc (
  3. x y z
  4. )
  5. (
  6. if
  7. (
  8. = x 0
  9. )
  10. n
  11. (
  12. fc
  13. (
  14. - 1 x
  15. )
  16. z
  17. (
  18. + y z
  19. )
  20. )
  21. )
  22. )
  23. (
  24. defun f(
  25. n
  26. )
  27. (
  28. if
  29. (= n 0
  30. )
  31. 0
  32. (
  33. fc n 0 1
  34. )
  35. )
  36. )
  37.  
  38.  
  39.  
  40. (
  41. f 0)
  42. (
  43. f 1)
  44. (
  45. f 2)
  46. (
  47. time (
  48. f 40
  49. )
  50. )
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class, interface, or enum expected
					(
					^
1 error
stdout
Standard output is empty