Releases: goplus/gop
Releases · goplus/gop
v1.0.16
v1.0.15
new features:
- igop
- add action for binary release
- add issue template
changes:
- add README_zh.md
- add
set -e
to all.bash, to make script exit immediately when any command fails - inject version when releasing
- rm cl/_cltest
- change make dir perm from 0777 to 0755
v1.0.14
v1.0.13
v1.0.12
v1.0.9
v1.0.8
v1.0.7
new slogan:
- The Go+ language for engineering, STEM education, and data science
new features:
- support methods of builtin types:
1.string
,3.14.string
"Hi".len
,"100".int
,"3.14".float
,"gop run foo.gop".fields
,"1,2,4".split(",")
[1, 2, 3].len
,["Hello", "Go+"].join(" ")
{"Hi": 1, "Go+": 2}.len
- ast.ExprStmt: support cmdline style
- cmdline style: support []
changes:
- ast.CallExpr: NoParen => NoParenEnd
v1.0.5
new features:
- new LambdaExpr style support:
=> {...}
,x => {...}
or(x, y, z) => {...}
- command line style:
println "Hi"
- use RegisterClassFileType to support class file types
- gop/cmd: gop build
- gop/printer: add *printer.NewlineStmt
- gop/printer.SetDebug
changes: