comparison test/c3examples/cast.c3 @ 284:05184b95fa16

Moved tests to seperate folder
author Windel Bouwman
date Fri, 15 Nov 2013 13:43:22 +0100
parents python/c3/examples/cast.c3@848c4b15fd0b
children d9df72971cbf
comparison
equal deleted inserted replaced
283:c9781c73e7e2 284:05184b95fa16
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