An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

## ⚠️ Under development ⚠️
# Fabienne
Fabienne is a toy language, inspired by the kaleidoscope tutorial.
[![Build Status](http://0b4bb36e.ngrok.io/buildStatus/icon?job=Fabienne)](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()

```