Mercurial > lcfOS
view python/c3/examples/cast.c3 @ 266:649884d9dc61 Working chain 1
Test
author | Windel Bouwman |
---|---|
date | Fri, 09 Aug 2013 16:49:29 +0200 |
parents | 848c4b15fd0b |
children |
line wrap: on
line source
/* Demo of how to type cast */ package castdemo; function int testcast() { var int a; var int* b; a = 3; b = cast<int*>(a); return 0; }