Strings and Escape Codes - LieutenantTeaTM/BubbleTea GitHub Wiki

Strings are defined between two ".

You can use escape codes to provide extra functionality. This is universal across all print macros.

\n NewLine

Example:

// Works like PrintLine
ps!("Printing the value!\n");
Ouput:
Printing the value

\t Tab

p!("Printing the... \tvalue!");
Output:
Printing the...         value!