Changeset 051bc69a in mainline for uspace/dist/src/sysel/demos/list.sy


Ignore:
Timestamp:
2010-05-08T08:10:44Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
640ffe6, c5cb943d
Parents:
25a76ab8
Message:

Update SBI to rev. 244.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/dist/src/sysel/demos/list.sy

    r25a76ab8 r051bc69a  
    3333
    3434                list = new List/int();
    35                 list.Init();
    3635
    3736                list.Append(5);
     
    4443                n = list.First;
    4544                while n != nil do
    46                         Builtin.WriteLine(n.Value);
     45                        Builtin.WriteLine(n.Data);
    4746                        n = n.Next;
    4847                end
Note: See TracChangeset for help on using the changeset viewer.