Skip to content

Commit

Permalink
Added preview.png
Browse files Browse the repository at this point in the history
  • Loading branch information
Traumatism committed May 20, 2023
1 parent 39f1f3c commit 3246738
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# $$\fbox{The maeel programming language}$$
# $\fbox{The maeel programming language}$

![](./preview.png)

[Documentation is here](docs/README.md)

Expand Down
13 changes: 8 additions & 5 deletions tests/tmp.maeel
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
| Swap the two stack top values
fun swap a b
(
b a
"std" include

fun fib n (
n 1 lteq
dup => (1 swap)
not => (n 1- fib n 2- fib +)
)

3 1 swap print
1 10 range (fib) map -> fibonacci_numbers

fibonacci_numbers puts

0 comments on commit 3246738

Please sign in to comment.