1
0
forked from ground/ground-old
This repository has been archived on 2026-03-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ground_old_fork/tests/simple.grnd

20 lines
343 B
Plaintext

# Check setting variables
set &myVar "dingus"
println $myVar
# Check string concat
add "dingle" "fart" &myOtherVar
println $myOtherVar
# Check double math
add 3.14 2.7 &myThirdVar
println $myThirdVar
# Check int math
add 464398727 374298 &yetAnotherVar
println $yetAnotherVar
# Check mixed math
add 432 4732.12 &finalVar
println $finalVar