fork download
  1. local love = {}
  2.  
  3. function love.load()
  4. print("I am the first love.load")
  5. end
  6.  
  7. function love.load()
  8. print("I am the second love.load")
  9. end
  10.  
  11. function love.load()
  12. print("I am the third love.load")
  13. end
  14.  
  15. love.load()
Success #stdin #stdout 0.02s 2496KB
stdin
Standard input is empty
stdout
I am the third love.load