comparison python/c3/examples/cast.c3 @ 221:848c4b15fd0b

pointers
author Windel Bouwman
date Mon, 08 Jul 2013 22:21:44 +0200
parents
children
comparison
equal deleted inserted replaced
220:3f6c30a5d234 221:848c4b15fd0b
1
2 /*
3 Demo of how to type cast
4 */
5
6 package castdemo;
7
8 function int testcast()
9 {
10 var int a;
11 var int* b;
12 a = 3;
13
14 b = cast<int*>(a);
15
16 return 0;
17 }
18