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

https://github.com/fergusq/fortob

A stack based, recursive-infix really postfix syntax, imperative and very funny programming language
https://github.com/fergusq/fortob

esoteric-language esoteric-programming-language funny-programming-language stack-based

Last synced: 6 months ago
JSON representation

A stack based, recursive-infix really postfix syntax, imperative and very funny programming language

Awesome Lists containing this project

README

          

Fortob
======

A stack based, recursive-infix really postfix syntax, imperative and very funny programming language

## Example code

```
$printName=[
$tl=\;
$firstName = $tl.nextString\;
$lastName = $tl.nextString\;
$originalName = $tl.seekString="os"\.if: [
$tl.accept:"os"\;
$tl.accept:"."\;
$tl.nextString
], [$lastName]\\;
($firstName+_+$lastName+_+"os"+_+$originalName).println;
'
]\;

$? $printName.apply:\ Pekka Meikäläinen;
$? $printName.apply:\ Maija Meikäläinen os. Suomalainen;
```