You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ For more details, see [Quick Start](doc/docs.md).
47
47
## Key Features of Go+
48
48
49
49
* Approaching natural language expression and intuitive (see [How Go+ simplifies Go's expressions](#how-go-simplifies-gos-expressions)).
50
-
* Smallest but Turing-complete syntax set in best practices (see [Go+ Specification for STEM Education](doc/spec-mini.md)).
50
+
* Smallest but Turing-complete syntax set in best practices (see [Go+ Mini Specification](doc/spec-mini.md)).
51
51
* Fully compatible with [Go](https://github.com/golang/go) and can mix Go/Go+ code in the same package (see [Go+ Full Specification](doc/spec.md) and [Go/Go+ Hybrid Programming](doc/docs.md#gogo-hybrid-programming)).
52
52
* Integrating with the C ecosystem including Python and providing limitless possibilities based on [LLGo](https://github.com/goplus/llgo) (see [Support for C/C++ and Python](#support-for-cc-and-python)).
53
53
* Does not support DSL (Domain-Specific Languages), but supports SDF (Specific Domain Friendliness) (see [Go+ Classfiles](#go-classfiles)).
@@ -81,7 +81,7 @@ Code style is just the first step. We have made many efforts to make the code mo
| type Rect struct {<br> Width float64<br> Height float64<br>}<br><br>func (this *Rect) Area() float64 { <br> return this.Width * this.Height<br>} | var (<br> Width float64<br> Height float64<br>)<br><br>func Area() float64 { <br> return Width * Height<br>} |[Go+ Classfiles](doc/classfile.md): We can express OOP with global variables and functions. |
83
83
84
-
For more details, see [Go+ Specification for STEM Education](doc/spec-mini.md).
84
+
For more details, see [Go+ Mini Specification](doc/spec-mini.md).
85
85
86
86
87
87
## Support for C/C++ and Python
@@ -115,7 +115,7 @@ module YourModulePath
115
115
116
116
go1.21// llgo 1.0
117
117
118
-
require github.com/goplus/llgo v0.9.7
118
+
require github.com/goplus/llgo v0.9.8
119
119
```
120
120
121
121
Based on LLGo, Go+ can support importing libraries written in C/C++ and Python.
0 commit comments