Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/dist/src/sysel/lib/boxed.sy

    r051bc69a rc5cb943d  
    3838class Char is
    3939        var Value : char;
     40
     41        fun get_as_string() : string, builtin;
     42
     43        -- String representation.
     44        prop AsString : string is
     45                get is
     46                        return get_as_string();
     47                end
     48        end
    4049end
    4150
    4251class Int is
    4352        var Value : int;
     53
     54        fun get_as_string() : string, builtin;
     55
     56        -- String representation.
     57        prop AsString : string is
     58                get is
     59                        return get_as_string();
     60                end
     61        end
    4462end
    4563
Note: See TracChangeset for help on using the changeset viewer.