diff options
author | Marvin Borner | 2022-03-05 18:14:28 +0100 |
---|---|---|
committer | Marvin Borner | 2022-03-05 18:14:28 +0100 |
commit | cab564e400590cbd8a88e190fe381a74655005cf (patch) | |
tree | ded57f2ddc8d127d1e82ae999862ce169ef900ba /src/Fun.hs | |
parent | c7d578ec4d9b87c36f504e5a0691007439d2a025 (diff) |
Multiple file support for generating assembly
Diffstat (limited to 'src/Fun.hs')
-rw-r--r-- | src/Fun.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,5 +10,5 @@ run :: IO () run = do args <- getArgs case args of - [path] -> compile path - _ -> usage + [] -> usage + paths -> compile paths |