fork download
  1. --left lift
  2. --back push
  3.  
  4.  
  5. lift = false
  6. push = false
  7.  
  8. (
  9. if lift = true
  10. then rs.setOutput("left", true)
  11. )
  12.  
  13. (
  14. if push = true
  15. then rs.setOutput("back", true)
  16. )
  17.  
  18.  
  19. while lift = false
  20. push = true
  21.  
  22.  
  23. while push = true
  24. lift = false
  25.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
luac: prog.lua:9: unexpected symbol near 'if'
stdout
Standard output is empty