Improved type system
This commit is contained in:
parent
3550f9e24e
commit
b8e37fafae
62 changed files with 189 additions and 172 deletions
|
@ -2,8 +2,8 @@ import mem
|
|||
import sys
|
||||
|
||||
struct Point {
|
||||
x Int
|
||||
y Int
|
||||
x int
|
||||
y int
|
||||
}
|
||||
|
||||
main() {
|
||||
|
@ -12,7 +12,7 @@ main() {
|
|||
delete(p)
|
||||
}
|
||||
|
||||
construct(x Int, y Int) -> *Point {
|
||||
construct(x int, y int) -> *Point {
|
||||
p := new(Point)
|
||||
p.x = x
|
||||
p.y = y
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue