https://goplus.org/
https://github.com/goplus/gop
For engineering, STEM education, and data science
转译语言→易读的 Go
- 有点Nim化 (赞)
- auto-property helps you get rid annoying Captional-To-Export
- Simplest C ffi (e.g. c.printf c”h%lf”, 3.3)
make Go more friendly to Pythoner:
- str.split(sep) over strings.Split(str, sep)
- no cap needed for export symbols
- [1, 2] over
int[]{1, 2}
, {1: 2} over map[int]int{1: 2}