Skip to content

Language 1.0.2

Compare
Choose a tag to compare
@NikkyHika NikkyHika released this 24 Mar 18:04
· 61 commits to main since this release
3879368

YOU MUST INSTALL MINGW COMPILER AND PUT MINGW FOLDER INTO THE FOLDER WITH THE EXECUTIVE FILE!
Added work with command line and file system, updated lists and explode function.

explode(symbol separator, text text); - splits a string into a list of texts, returns list<text>.
getPath(); - gets the directory path it is currently in, returns text.
listDir(); - gets a list of files and folders from the current directory, returns list<text>.
deleteFile(text filename); - deletes a file.
deleteFolder(text foldername); - deletes a directory (only if it's empty).
createFolder(text foldername); - creates a folder.
changeDir(text foldername); - move to another directory.
cmdCommand(text command); - execute command line command.