Mercurial > lcfOS
view python/c3/examples/types.c3 @ 266:649884d9dc61 Working chain 1
Test
author | Windel Bouwman |
---|---|
date | Fri, 09 Aug 2013 16:49:29 +0200 |
parents | 81752b0f85a5 |
children |
line wrap: on
line source
/* Demo of how to define types */ package typedemo; type int A; type int B; type struct { int x, y; A z; } C; type struct { C x; B y; int z; } D; type D* E; function int testcast() { var A a; var B b; a = 3; b = a; var C c; c.x = a; c.z = c.y; var D d; var E e; var D* e2; e = &d; e2 = e; e2->x.x = 22; return 0; }