We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I will document here any ideas for built-in functions I have. Ticking them off as they are added.
split(arg: string, delim: string)
read_file(path: string)
write_file(path: string, file: string, append: bool)
append
vargs()
The text was updated successfully, but these errors were encountered:
ammar-ahmed22
No branches or pull requests
I will document here any ideas for built-in functions I have. Ticking them off as they are added.
Functions
split(arg: string, delim: string)
: Splits a string into an array of strings based on the delimiterread_file(path: string)
: Reads a file into a stringwrite_file(path: string, file: string, append: bool)
: Writes a string to a file (ifappend
is true, appends to the file instead of overwriting)vargs()
: Extracts command line variables sent passed with the execution of the fileThe text was updated successfully, but these errors were encountered: