Mercurial > repos > rhope
view compile.rhope @ 81:dbe95bfec970
Very basic file access is now working; however, there's a bug involving assigning a literal to a named pipe inside a conditional block that needs fixing
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Thu, 22 Jul 2010 05:39:08 +0000 |
parents | 73e978d590c7 |
children | 0a4682be2db2 |
line wrap: on
line source
Import lex.rhope Import countstring.rhope Import parse.rhope Main[args] { [args]Index[1] { Print[["Parsing "]Append[~]] file <- <String@File[~] ,data <- [file]Get FString[[file]Length] tokens <- Lex[Count String[data]] Pretty Print[Parse[tokens], ""] }{ Print["Usage: rhope compile.rhope <filename>"] } }