2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-07-01 16:52:03 +00:00

Created Fs (markdown)

sammy 2021-03-21 14:14:29 -04:00
parent 200373b542
commit ecf5fe066a

14
Fs.md Normal file

@ -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"
```