Languages Features Creators CSV Resources Challenges Add Language
GitHub icon

Fennel

Fennel - Programming language

< >

Fennel is a programming language created in 2016 by Calvin Rose.

#431on PLDB 7Years Old 2.0kUsers
0Books 0Papers 207Repos

Lua Lisp Language


Example from the web:
;; Sample: read the state of the keyboard and move the player accordingly (local dirs {:up [0 -1] :down [0 1] :left [-1 0] :right [1 0]}) (each [key delta (pairs dirs)] (when (love.keyboard.isDown key) (let [[dx dy] delta [px py] player x (+ px (* dx player.speed dt)) y (+ py (* dy player.speed dt))] (: world :move player x y))))
Example from hello-world:
(print "Hello World")

Language features

Feature Supported Token Example
Integers ✓
; -?\d+
Floats ✓
; -?\d+\.\d+
Strings ✓ "
"Hello world"
Print() Debugging ✓ print
Comments ✓
; A comment
Line Comments ✓ ;
; A comment
Semantic Indentation X
enso.html · fennel.html · korn-shell.html

View source

- Build the next great programming language · Search · Day 213 · About · Blog · Acknowledgements · Traffic · Traffic Today · GitHub · feedback@pldb.com