Releases: alexandru-balan/BlushLang
Releases · alexandru-balan/BlushLang
The creator
Creation of files and folders is now possible using the Blush language
Important features:
- Error detection. The compiler will detect wrong syntax and throw errors before running your code.
- Runtime error throwing. If there are problems that happen at runtime, the compiler will throw errors and will point out the line that caused it.
- Speed and memory optimisations. Between evaluation of the script and execution of it, the compiler will save created concepts and the concepts can save important data to speed up the execution and use less memory.
Allowed syntax:
Creation:
create folder 'someFolder' here
or create folder 'someFolder2' in 'someFolder/'
or create folder 'someFolder3 at "./someFolder/someFolder2/"'
create file "myFile.txt" here
etc. (the same as Folder syntax)