Changeset fa36f29 in mainline for uspace/dist/sysel/count.sy
- Timestamp:
- 2010-02-27T17:59:14Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 94d484a
- Parents:
- 09ababb7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/dist/sysel/count.sy
r09ababb7 rfa36f29 1 class Count eris2 fun count(a : Int; b : Int) is3 var i : Int;1 class CountDemo is 2 fun Count(a : int; b : int) is 3 var i : int; 4 4 5 5 i = a; … … 10 10 11 11 end 12 end13 12 14 class HelloWorld is 15 fun main() is 16 Counter.count(0, 10); 13 fun Main() is 14 Count(0, 10); 17 15 end 18 16 end
Note:
See TracChangeset
for help on using the changeset viewer.