Created
October 8, 2024 16:39
-
-
Save alxarsenault/39e132d097b66ff41c2c7fc21ff881c0 to your computer and use it in GitHub Desktop.
zscript doc test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int v = 1; | |
float v = 1.1; | |
bool v = true; | |
bool v = false; | |
string v = "abc"; | |
string v = """abc"""; | |
string v = '''abc'''; | |
array v = []; | |
table v = {}; | |
// TODO: No sure about this yet. | |
char v = 'a'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment