Make example in README.md copy-pastable
This commit is contained in:
parent
859b1676fd
commit
27d25fb849
1 changed files with 5 additions and 1 deletions
|
@ -5,7 +5,11 @@ Bolt
|
||||||
|
|
||||||
💬 Got some questions or feedback? Just open an issue and we'll be glad to respond!
|
💬 Got some questions or feedback? Just open an issue and we'll be glad to respond!
|
||||||
|
|
||||||

|
```ocaml
|
||||||
|
let fac = match.
|
||||||
|
0 | 1 => 1
|
||||||
|
k => k * fac (k-1)
|
||||||
|
```
|
||||||
|
|
||||||
Bolt is a new strictly-evaluated functional programming language in the making
|
Bolt is a new strictly-evaluated functional programming language in the making
|
||||||
that aims to make writing complex applications dead-simple. It ships with some
|
that aims to make writing complex applications dead-simple. It ships with some
|
||||||
|
|
Loading…
Reference in a new issue