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
#!/usr/bin/env python3 | |
# usage: | |
# python3 cardinal.py code.cardinal < input.txt | |
# to show program execution, pass -d and a time delta: | |
# python3 cardinal.py -d 0.1 code.cardinal < input.txt | |
import sys | |
import time |
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
-- Pass this program a world name, and run it from the Knytt Stories root directory: | |
-- | |
-- cd "Knytt Stories" | |
-- ./KnyttStoriesMapper "Nifflas - The Machine" | |
-- | |
-- It will create a file called "Nifflas - The Machine.png" containing a map. | |
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE TypeFamilies #-} |
NewerOlder