Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hikari-no-yume/firth

Firth is a functional, strongly dynamically-typed, concatenative stack-oriented programming language.
https://github.com/hikari-no-yume/firth

Last synced: 2 months ago
JSON representation

Firth is a functional, strongly dynamically-typed, concatenative stack-oriented programming language.

Awesome Lists containing this project

README

        

The Firth Programming Language
==============================

Firth is a functional, strongly dynamically-typed, concatenative stack-oriented programming language. Here's a program calculating the factorial of 5 written in it:

```firth
/factorial [
dup. 1 gt.
[
dup. 1 sub.
factorial. mul.
] [
drop. 1
] ifelse.
] def.

5 factorial. print.
```

And here are some of its features:

* Concatenative, stack-oriented
* Functional with first-class, convenient, anonymous functions
* Strongly dynamically-typed, but with optional type hinting (planned, unimplemented)
* No variable/word distinction
* Arbitrary-precision integers (planned, unimplemented)
* Tabs are a syntax error
* Never touch the Shift key (if you use a US-like keyboard, anyway!)
* Free software
* More to come!

Please note: Firth is in early development and any and all features are subject to change. Features that are implemented may not be implemented *well*, features may be implemented that the specification does not define, the specification may define features that are not implemented, etc. The specification is very much incomplete.

Interested? Great! Check out the following files in the `/docs` directory:

* `overview.md` for a tour and explanation of the language fundamentals with code samples
* `design.md` for more information on Firth's origins and design goals
* `spec.md` for the specification and language reference

Or, read on to learn how to get Firth up and running!

Usage
-----

The (incomplete) implementation is currently written in JavaScript, and you'll need node.js to buld it.

Use npm to install the dependencies:

$ npm install

Now you can try out the REPL:

$ ./bin/firth.js

Or, you can use gulp (`npm install -g gulp`) to compile the interpreter into a single file:

$ gulp

And try out `test.html` in your browser, which lets you type in Firth code and execute it, seeing its tokenised and parsed forms.