view test/c3examples/cast.c3 @ 294:e89cca5779b0

Merge
author Windel Bouwman
date Thu, 28 Nov 2013 20:39:56 +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;
}