shell stuff, preprocessor directive

This commit is contained in:
udo
2022-01-21 22:22:14 +00:00
parent 3e8f0f1fa7
commit 939009f9a1
22 changed files with 342 additions and 54 deletions
+4 -2
View File
@@ -1,9 +1,11 @@
:sig
StringList split(String str, String delim = "\n")
StringList split(String str, String delim)
StringList split(String str)
:params
str : string to be split
delim : delimiter (defaults to newline character)
delim : optional, delimiter (if omitted, any sequence of whitespace characters will count as a delimiter)
return value : a list of strings
:desc