Mercurial > lcfOS
view python/tests/code1.ks @ 187:bf5ab358f43a
Renamed readme and added status badge
author | Windel Bouwman |
---|---|
date | Sat, 25 May 2013 14:41:19 +0200 |
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.