Created
November 13, 2018 22:04
-
-
Save chessai/f6665d1abe01e92ddcd08150aa37845f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkArg :: Int -> String | |
mkArg n = "arg" ++ show n | |
mkDegenerate :: Int -> Int -> String | |
mkDegenerate start end = "f " ++ (mconcat $ intersperse "@" $ map mkArg [start..end]) ++ " = " ++ mkArg end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment