diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-03-08 23:39:05 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-03-08 23:39:05 -0500 |
commit | 66b9177cce4e186bf3572443af2436d7a9d0f162 (patch) | |
tree | a46ac8a76cc5a63ff6f5ce90dfdb3f9067228ca6 /dimension | |
parent | df0f06adcddb9c40b7cfe736a1a106a874f3513e (diff) | |
download | dimension-66b9177cce4e186bf3572443af2436d7a9d0f162.tar.xz |
Declare `version' to be 3.6.
Diffstat (limited to 'dimension')
-rw-r--r-- | dimension/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dimension/main.c b/dimension/main.c index 56ef8c5..1dc24d1 100644 --- a/dimension/main.c +++ b/dimension/main.c @@ -174,6 +174,7 @@ main(int argc, char **argv) { /* Construct the symbol table */ dmnsn_symbol_table *symtable = dmnsn_new_symbol_table(); dmnsn_declare_symbol(symtable, "__file__", dmnsn_new_ast_string(input)); + dmnsn_declare_symbol(symtable, "version", dmnsn_new_ast_float(3.6)); /* Debugging option - output the abstract syntax tree as an S-expression */ if (parse) { |