Changeset fa36f29 in mainline for uspace/dist/sysel/count.sy


Ignore:
Timestamp:
2010-02-27T17:59:14Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
94d484a
Parents:
09ababb7
Message:

Update SBI to rev. 75.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/dist/sysel/count.sy

    r09ababb7 rfa36f29  
    1 class Counter is
    2         fun count(a : Int; b : Int) is
    3                 var i : Int;
     1class CountDemo is
     2        fun Count(a : int; b : int) is
     3                var i : int;
    44
    55                i = a;
     
    1010
    1111        end
    12 end
    1312
    14 class HelloWorld is
    15         fun main() is
    16                 Counter.count(0, 10);
     13        fun Main() is
     14                Count(0, 10);
    1715        end
    1816end
Note: See TracChangeset for help on using the changeset viewer.