-
Alice Brenon authored
Add a (naive) script to put paragraphs on one line to please stanza + some lib to factorize common bases for future haskell scripts
45f79db5
Script.hs 239 B
module System.Script (
syntax
) where
import System.Exit (die)
import System.Environment (getProgName)
import Text.Printf (printf)
syntax :: String -> IO ()
syntax s = do
this <- getProgName
die $ printf "Syntax: %s %s" this s