From ecf5fe066afb1c6da246db0008caf0dd30612e5f Mon Sep 17 00:00:00 2001 From: sammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sun, 21 Mar 2021 14:14:29 -0400 Subject: [PATCH] Created Fs (markdown) --- Fs.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Fs.md 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