diff --git a/Fs.md b/Fs.md new file mode 100644 index 0000000..38630fb --- /dev/null +++ b/Fs.md @@ -0,0 +1,14 @@ +Fs is a filesystem library for Hilbish. It allows you to access files and the filesystem, there's not much else to say. +To require: +```lua +local fs = require 'fs' +``` + +# Functions +### fs.cd(path) +Changes the current working directory to `path`. + +#### Example +```lua +fs.cd "/etc" +``` \ No newline at end of file