// == Is the file there (via path)? == // import khoury.fileExists // fileExists("howdy.txt") // == Create the file with contents == // import khoury.linesToString // import khoury.fileWrite // fileWrite("howdy.txt", linesToString("howdy", "how are you today?")) // fileExists("howdy.txt") // == Read the contents of the file == // import khoury.fileReadAsString // fileReadAsString("howdy.txt") // == Read the contents of the file == // import khoury.fileReadAsList // fileReadAsList("howdy.txt")