-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added filesystem, libs, headers, and pointers
Added filesystem features, support for custom libraries and functions, version headers, data pointers, the ability to run shell commands, define functions, as well as some other minor changes.
- Loading branch information
Showing
10 changed files
with
492 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
(lib_gdefine__printFullName__mt__2__str__str__(<<__(system_io_output__console)__(+__"Hello, "__(param__0)__" "__(param__1)__"!"))) | ||
(lib_ldefine__averageOfTwoInt__(/__(+__(param__1)__(param__1))__2)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(require__1__1__0) | ||
(data_declare__str__fileName) | ||
(<<__(data_declare__str__fileData)__"") | ||
(<<__(system_io_output__console)__"Enter the file to read: ") | ||
(<<__fileName__(system_io_input__console)) | ||
(system_io_file_declare__ifs__openFileRead__fileName) | ||
(system_while__(system_not__(system_io_file_iseof__openFileRead))__(system_run__ | ||
(data_declare__char__charRead)__(<<__charRead__(system_io_input__file-__openFileRead))__(<<__(system_io_output__console)__charRead)__(<<__fileData__(+__fileData__(data_type_conversion__char__str__charRead))))) | ||
(<<__(data_arr_specify__myArray__0)__(system_io_input__console)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
(require__1__1__0) | ||
|
||
(lib_include__"exampleLibrary.usclib") | ||
|
||
(<<__(data_arrv_declare__str__myArray__1)__(data_arr_group__" "__" ")) | ||
(<<__(system_io_output__console)__"Enter your first name: ") | ||
(<<__(data_arr_specify__myArray__0)__(system_io_input__console)) | ||
(<<__(system_io_output__console)__"Enter your last name: ") | ||
(<<__(data_arr_specify__myArray__1)__(system_io_input__console)) | ||
(printFullName__(data_arr_specify__myArray__0)__(data_arr_specify__myArray__1)) | ||
(<<__(data_arr_specify__myArray__0)__(system_io_input__console)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.