Welcome to Amiga-Storage!, The best for Amiga classic. ©2016-2024 Meta-MorphOS.org
fe_1.0.lha
Description:A tiny, embeddable language
Developer:Stefan Haubenthal
Homepage:https://github.com/ooichu/fe/
Readme:
Short: A tiny, embeddable language
Author: "rxi", "ooichu"
Uploader: polluks+aminet sdf lonestar org (Stefan Haubenthal)
Type: dev/lang
Version: 1.0
Architecture: ppc-morphos; m68k-amigaos
URL: https://github.com/ooichu/fe/

# fe
A *tiny*, embeddable language implemented in ANSI C

```clojure
(= reverse (fn (lst)
(let res nil)
(while lst
(= res (cons (car lst) res))
(= lst (cdr lst))
)
res
))

(= animals '("cat" "dog" "fox"))

(print (reverse animals)) ; => ("fox" "dog" "cat")
```

## Overview
* Supports numbers, symbols, strings, pairs, lambdas, macros
* Lexically scoped variables, closures
* Small memory usage within a fixed-sized memory region -- no mallocs
* Simple mark and sweep garbage collector
* Easy to use C API
* Portable ANSI C -- works on 32 and 64bit
* Concise -- less than 800 sloc

---

* **[Demo Scripts](scripts)**
* **[C API Overview](doc/capi.md)**
* **[Language Overview](doc/lang.md)**
* **[Implementation Overview](doc/impl.md)**


## Contributing
The library focuses on being lightweight and minimal; pull requests will
likely not be merged. Bug reports and questions are welcome.


## License
This library is free software; you can redistribute it and/or modify it under
the terms of the MIT license. See [LICENSE](LICENSE) for details.

Upload Date:Mar 04 2023
Category:Development/C
Download:fe_1.0.lha
Size:49 KB
Downloads:203
Comment(s):