view python/tests/code1.ks @ 108:8267ba1dbce3

Added testcode
author Windel Bouwman
date Tue, 01 Jan 2013 17:17:44 +0100
parents
children 9e552d34bd60
line wrap: on
line source

module s;
var a, b, c:integer;

procedure x();
begin
end x;

begin
  a := 4 + 6;
  b := a + 2*a - 3;
  c := a + b
end s.