summaryrefslogtreecommitdiff
path: root/point.toc
diff options
context:
space:
mode:
Diffstat (limited to 'point.toc')
-rw-r--r--point.toc33
1 files changed, 0 insertions, 33 deletions
diff --git a/point.toc b/point.toc
deleted file mode 100644
index 0911ca8..0000000
--- a/point.toc
+++ /dev/null
@@ -1,33 +0,0 @@
-pkg "point";
-
-
-#export Point ::= struct {
- x, y: int;
-};
-bar ::= fn() []int {
- x:[]int = new(int,20);
- for p, i := &x {
- *p = i;
- }
- x
-};
-
-
-#export x ::= bar();
-
-
-#export mk_point ::= fn(x, y:=0) p : Point {
- p.x = x;
- p.y = y;
-};
-
-
-mk_point2 ::= fn(x, y:int) p: Point {
- p = mk_point(x*x, y*y);
-};
-
-#export foo ::= fn(x :: int) int {
- // k : Point = 95;
- // p:=x[3];
-};
-#export a:=5; \ No newline at end of file