summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.go b/src/main.go
index a742c77..ae7524c 100644
--- a/src/main.go
+++ b/src/main.go
@@ -20,9 +20,10 @@ func readfile(path string) []string {
}
tmp := reg.Split(string(dat), -1);
+ /* TODO: add comments */
for i := range tmp{
- if tmp[i] != "" && tmp[i][0] != '#' {
+ if tmp[i] != "" {
raw = append(raw, tmp[i]);
}
};