›
›
Also see this: https://github.com/gizak/termui/blob/master/_examples/sparkline.go
Thanks for your help! Fix a typo in the code snippet: ```go if int(m) > len(data) { m = 0 } ``` -> ```go if int(m) >= len(data) { m...
@maaslalani Great works! what about a little intro and demo gif in the README file?
@yonas For the standard `print()` method, you can define your own print handler via [`SetPrintFunc`](https://pkg.go.dev/github.com/1set/starlet#Machine.SetPrintFunc). For other Go methods you have provided for Starlark, please implement them in the usual...