blob: 26cdeb375407021db4cc50afee409b0faed35ca8 (
plain)
1
2
3
4
5
6
7
8
9
|
import Control.Monad (void)
import System.Process (rawSystem)
import System.Environment (getArgs)
main :: IO ()
main = do
arguments <- getArgs
void $ rawSystem "bundle"
$ "exec" : "./bin/7digital.rb" : arguments
|