1
0
mirror of https://github.com/urlysses/1991.git synced 2024-11-26 03:28:06 +11:00
A server-side web framework written in Forth. http://www.1-9-9-1.com
Go to file
urlysses 31311ee91c Save user routing in a wordlist.
The aim is to try to avoid polluting the global wordlist with routing
functions.

The alternative would be to have users simply define words that match
their routes, e.g.:
```
: 1991/hi
    ( some definition of hi's handler )
    ;
```

I'm still not entirely convinced that the above method isn't a better
solution.
2017-02-13 22:34:57 -05:00
.gitignore 1991 2017-02-01 22:26:33 -05:00
1991.fs Save user routing in a wordlist. 2017-02-13 22:34:57 -05:00
LICENSE.md 1991 2017-02-01 22:26:33 -05:00
README.md 1991 2017-02-01 22:26:33 -05:00

1991

A server-side web framework written in Forth.