view python/tests/code1.ks @ 127:ec1f2cc04d95

Added st util gui start
author Windel Bouwman
date Sun, 13 Jan 2013 13:02:29 +0100
parents 9e552d34bd60
children
line wrap: on
line source

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

procedure test(x:integer);
begin
   a := x * x + 1337;
   b := a * x
end test;

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