diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 13:29:32 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 13:29:32 -0600 |
commit | 2dcd2df3692b8769558428ae0ae77d15fcc804f4 (patch) | |
tree | 58b1c7ce207d83d9801f743bcc8e213a2f631a3a /bootstrap/app | |
parent | ac873ef55037b554019a04ffc1f104d8d0a7b0f5 (diff) | |
parent | 55d59057173235daac3eee96de78b0b35412d0e6 (diff) | |
download | fpm-2dcd2df3692b8769558428ae0ae77d15fcc804f4.tar.gz fpm-2dcd2df3692b8769558428ae0ae77d15fcc804f4.zip |
Merge pull request #131 from certik/f
Initial Fortran infrastructure
Diffstat (limited to 'bootstrap/app')
-rw-r--r-- | bootstrap/app/Main.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bootstrap/app/Main.hs b/bootstrap/app/Main.hs new file mode 100644 index 0000000..4897901 --- /dev/null +++ b/bootstrap/app/Main.hs @@ -0,0 +1,8 @@ +module Main where + +import Fpm ( getArguments + , start + ) + +main :: IO () +main = getArguments >>= start |