Changeset 18 for trunk/Example.pas


Ignore:
Timestamp:
Apr 9, 2009, 11:17:38 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Vylepšené parsování.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Example.pas

    r11 r18  
    11program Test;
    22var
    3   A: Byte;
     3  a: Byte;
     4  B: Byte;
    45begin
    5   A := 'a' + (10 + 2) * 3 xor 10 / 2;
     6  A := 'a' + (10 + 2 * 3 + 2) xor 10 / 2;
     7  B := 20;
    68  while A < 10 do A := A + 1;
     9
    710end;
Note: See TracChangeset for help on using the changeset viewer.