Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
koki-develop committed Mar 6, 2024
1 parent 15c91ff commit f4abbd3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ $ mingo main.go
package main;import "fmt";func fibonacci(n int)int{if n<=1{return n};return fibonacci(n-1)+fibonacci(n-2)};func main(){n:=10;for i:=0;i<n;i++{fmt.Println(fibonacci(i))}};
```

---

An example of minifying [cLive](https://github.com/koki-develop/clive):

- [Minified #128 - koki-develop/clive](https://github.com/koki-develop/clive/pull/128)

## LICENSE

[MIT](./LICENSE)

0 comments on commit f4abbd3

Please sign in to comment.