Help for this page

Select Code to Download


  1. or download this
    sub literalize
    {
    ...
    
    assert(42 == 24);
    
  2. or download this
    assertion failed: 42 == 24
    
  3. or download this
    #define assert(condition) { if (!condition) { printf("assertion failed
    +: %s\n", #condition); } }