https://github.com/marciok/fabienne
Fabienne is a programming language, inspired by kaleidoscope.
https://github.com/marciok/fabienne
kaleidoscope programming-language swift-3
Last synced: 7 months ago
JSON representation
Fabienne is a programming language, inspired by kaleidoscope.
- Host: GitHub
- URL: https://github.com/marciok/fabienne
- Owner: marciok
- Created: 2016-10-10T14:29:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-22T22:26:34.000Z (about 9 years ago)
- Last Synced: 2025-01-02T07:44:09.407Z (about 1 year ago)
- Topics: kaleidoscope, programming-language, swift-3
- Language: Swift
- Homepage:
- Size: 323 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ⚠️ Under development ⚠️
# Fabienne
Fabienne is a toy language, inspired by the kaleidoscope tutorial.
[](http://0b4bb36e.ngrok.io/job/Fabienne/)
One of its main features, is a built in webserver.
## Example:
```ruby
# Can calculate fibonacii :)
def fib(x)
if x < 3 then
1
else
fib(x-1)+fib(x-2)
end
fib(10)
def httpGet(route)
fib(route)
end
httpStart()
```