Changes in uspace/dist/src/sysel/lib/boxed.sy [c5cb943d:051bc69a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/dist/src/sysel/lib/boxed.sy
rc5cb943d r051bc69a 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 is45 get is46 return get_as_string();47 end48 end49 40 end 50 41 51 42 class Int is 52 43 var Value : int; 53 54 fun get_as_string() : string, builtin;55 56 -- String representation.57 prop AsString : string is58 get is59 return get_as_string();60 end61 end62 44 end 63 45
Note:
See TracChangeset
for help on using the changeset viewer.