view test/c3examples/cast.c3 @ 290:7b38782ed496

File moves
author Windel Bouwman
date Sun, 24 Nov 2013 11:24:15 +0100
parents d9df72971cbf
children
line wrap: on
line source


/*
 Demo of how to type cast
*/

module castdemo;

function int testcast()
{
    var int a;
    var int* b;
    a = 3;
    
    b = cast<int*>(a);

    return 0;
}