view test/c3examples/cast.c3 @ 288:a747a45dcd78

Various styling work
author Windel Bouwman
date Thu, 21 Nov 2013 14:26:13 +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;
}