Changes in uspace/dist/src/sysel/lib/boxed.sy [051bc69a:c5cb943d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/dist/src/sysel/lib/boxed.sy
r051bc69a rc5cb943d 38 38 class Char is 39 39 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 40 49 end 41 50 42 51 class Int is 43 52 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 44 62 end 45 63
Note:
See TracChangeset
for help on using the changeset viewer.