Mercurial > lcfOS
view examples/c3/types.c3 @ 359:b4ac28efcdf4
Reorganize files
author | Windel Bouwman |
---|---|
date | Fri, 14 Mar 2014 15:41:55 +0100 |
parents | 158068af716c |
children |
line wrap: on
line source
/* Demo of how to define types */ module 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; }