add comments

This commit is contained in:
Luna 2019-07-08 22:41:38 -03:00
parent 176bbd446a
commit eea39cdd24
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ pub const Lang = struct {
stmt = std.mem.trimLeft(u8, stmt, "\n");
if (stmt.len == 0) continue;
if (stmt[0] == '#') continue;
// TODO better tokenizer instead of just tokenize(" ");
var tok_it = std.mem.tokenize(stmt, " ");