retroforth/doc/Examples.md
crc 7d15bbe963 add list of examples
FossilOrigin-Name: b067c0232c6693a11ff749aaec6b17058817bfb76a47a4ae2fdc0eb30d4e5f76
2017-10-19 13:42:04 +00:00

24 lines
1.6 KiB
Markdown

# Examples
| Filename | Description |
| -------------------------- | --------------------------------------- |
| 99Bottles.forth | Display "99 bottles of beer" song |
| AddingVectors.forth | Adding values in two arrays |
| Atua-WWW.forth | Atua HTTP server |
| Atua.forth | Atua Gopher server |
| Autopsy.forth | Debugging aids |
| Cat.forth | Display a file to the output |
| Chess.forth | Simple ASCII-based chess game |
| Echo.forth | Echo command line arguments |
| GCD.forth | Greatest common denominator |
| IterativeFibonacci.forth | Fibonacci sequence, iterative |
| LeastCommonMultiple.forth | Find least common multiple |
| Primes.forth | Prime sieve |
| RecursiveFactorial.forth | Factorial of a number, recursive |
| RecursiveFibonacci.forth | Fibonacci sequence, recursive |
| Roo.forth | Block editor using Tuporo backend |
| 1D-Cellular-Automota.forth | 1D Cellular Automota (Rosetta Code) |
| is-palindrome.forth | Is string a palindrome? |
| Tuporo.forth | Block storage via Gopher protocol |
| VT100.forth | Example VT100 namespace |
| sort-on-stack.forth | Sort numbers on the stack |