Mercurial > lcfOS
view python/c3/examples/cast.c3 @ 282:c137f1fe3e65
Add codeship hook
author | Windel Bouwman |
---|---|
date | Fri, 15 Nov 2013 09:32:37 +0100 |
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; }