Mercurial > lcfOS
comparison python/ks/builtin.py @ 146:91af0e40f868
Moved several files
author | Windel Bouwman |
---|---|
date | Fri, 22 Feb 2013 10:31:58 +0100 |
parents | python/ppci/frontends/ks/builtin.py@9e552d34bd60 |
children |
comparison
equal
deleted
inserted
replaced
145:c101826ffe2b | 146:91af0e40f868 |
---|---|
1 from .nodes import * | |
2 | |
3 boolean = BaseType('boolean', 8) | |
4 integer = BaseType('integer', 8) | |
5 real = BaseType('real', 8) | |
6 char = BaseType('char', 1) | |
7 void = BaseType('void', 0) | |
8 | |
9 chr_func = BuiltinProcedure('chr', ProcedureType([Parameter('value', 'x', integer)], char)) | |
10 |