Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/enum_tests/position.cfa

    reb7586e rc17dc80  
    1212
    1313int main () {
    14     Colour fishy;
    15     fishy = Colour.Green;
    16     fishy;
     14    Colour fishy; // posE()
     15    fishy = Colour.Green; // value(fishy) = Colour.Green;
     16    fishy; // valueE( fishy );
     17
     18    printf( "Compile Time: blue value: %s, position: %d, label: %s, default return value: %s \n", valueE(Colour.Blue), posE(Colour.Blue), labelE(Colour.Blue), Colour.Blue );
     19    printf( "Runtime: fishy value: %s, position: %d, label: %s, default return value: %s\n", valueE(fishy), posE(fishy), labelE(fishy), fishy );
    1720    Colour c2 = fishy;
    18 
    19     sout | "Compile Time: blue value: " | valueE(Colour.Blue) | ", position: " | posE(Colour.Blue) | ", label: " | labelE(Colour.Blue) | ", default return value: " | Colour.Blue;
    20     sout | "Runtime: fishy value: " | valueE(fishy) | ", position: " | posE(fishy) | ", label: " | labelE(fishy) | ", default return value: " | fishy;
    21     sout | "Runtime: C2 value: " | valueE(c2) | ", position: " | posE(c2) | ", label: " | labelE(c2) | ", default return value: " | c2;
     21    printf( "Runtime: C2 value: %s, position: %d, label: %s, default return value: %s\n", valueE(c2), posE(c2), labelE(c2), c2 );
    2222    Colour.Red;
    2323    char * ao = Colour.Red;
     
    2929    Plain a = B;
    3030    printf( "%d \n", a );
    31    
    3231}
Note: See TracChangeset for help on using the changeset viewer.