OmegaExtern
released this
20 Oct 17:34
·
19 commits
to hello-world
since this release
hello-world
Version: 1.0.0.0
Implements a table MyCSharpLibrary
and MyCSharpFunction
member.
When it is called like so:
require("helloworld")
MyCSharpLibrary.MyCSharpFunction()
Assuming a binary module is installed correctly, it would print "Hello from C# binary module!" message to the console.
external-file-io
Version: 1.0.0.0
Implements a table externalfile
.
Function Name | Description | Arguments | Returns |
---|---|---|---|
Delete | Deletes a file or directory. | 1: string path to delete.2: bool recursive (only available when path is directory) determines whether to delete all subfiles and subfolders. |
void (no value) |
Read | Reads from a file on disk. | 1: string path to file on disk to read from. |
string |
Write | Writes to a file on disk. | 1: string path to file on disk to write to.2: string contents to write to path. |
void (no value) |