1
0
mirror of https://github.com/bennofs/nix-script synced 2025-01-10 04:44:21 +01:00

Document type aliases

This commit is contained in:
rnhmjoj 2015-09-11 16:54:29 +02:00
parent 8f107c011a
commit 5cff3ec2c5

View File

@ -8,9 +8,13 @@ import System.Environment (lookupEnv, getProgName, getArgs)
import System.Process (callProcess)
import System.Posix.Escape.Unicode (escapeMany)
-- | Enviroment variables
type Env = [String]
-- | Program arguments
type Args = [String]
-- | interpreter name and arguments
type Inter = (String, Args)