Skip to content

Instantly share code, notes, and snippets.

@Caraveo
Last active August 20, 2023 06:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Caraveo/a819ed0d2ed6ff1a61c42755f396868c to your computer and use it in GitHub Desktop.
Save Caraveo/a819ed0d2ed6ff1a61c42755f396868c to your computer and use it in GitHub Desktop.
CALL X[
STRING Welcome: Hello + ' World!'
INDEX Cats:["Pixie!", "Diva", "Chance"]
FLOAT Value: 12.0
INTEGER Int: 0
BOOL Check: EXIST
]
NEW X2 X() #Instantiate
X2.Welcome # Returns string "Hello World!" Again
X2.Cats[0] # Returns string "Pixie!"
X2.Value # Returns 12.0
X2.Int # Returns 0
X2.Check # Returns !NULL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment