Init fennel setup
This commit is contained in:
parent
9575795f2b
commit
8cc7a39d5a
6 changed files with 6817 additions and 1 deletions
1
hello_world/fennel.lua
Symbolic link
1
hello_world/fennel.lua
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../fennel-1.5.3.lua
|
||||
15
hello_world/main.fnl
Normal file
15
hello_world/main.fnl
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
(fn love.load []
|
||||
;; start a thread listening on stdin
|
||||
(: (love.thread.newThread "require('love.event')
|
||||
while 1 do love.event.push('stdin', io.read('*line')) end") :start))
|
||||
|
||||
(fn love.handlers.stdin [line]
|
||||
;; evaluate lines read from stdin as fennel code
|
||||
(let [(ok val) (pcall fennel.eval line)]
|
||||
(print (if ok (fennel.view val) val))))
|
||||
|
||||
(fn love.draw []
|
||||
(love.graphics.print "Hello from Fennel!\nPress any key to quit" 10 10))
|
||||
|
||||
(fn love.keypressed [key]
|
||||
(love.event.quit))
|
||||
1
hello_world/main.lua
Symbolic link
1
hello_world/main.lua
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../fennel_bootstrap.lua
|
||||
Loading…
Add table
Add a link
Reference in a new issue