Fix README

This commit is contained in:
Alex Zenla 2023-09-04 02:39:40 -07:00
parent 4aa516f0fb
commit bfd24154a8
Signed by: alex
GPG Key ID: C0780728420EBFE5

View File

@ -1,8 +1,6 @@
# pork
A small BBQ language.
Very WIP. Like VERY.
A work-in-progress programming language.
```pork
/* fibonacci sequence */
@ -15,7 +13,7 @@ fn fib(n) {
}
fn main() {
result = fib(20)
let result = fib(20)
println(result)
}
```