-
Notifications
You must be signed in to change notification settings - Fork 11
Learn: Variables
Julia Ogris edited this page Jun 3, 2023
·
11 revisions
There are three different basic types of values in evy: string
, num
and bool
.
Strings must be TBD, see old samples
Basic type | ✅ Examples | ❌ Invalid |
---|---|---|
string |
"Hello!" , "1" , ""
|
'abc' , abc
|
num |
1 , -2.3
|
+2 , .2 , "2"
|
bool |
true , false
|
"true" |
Overview | About | Playground | Gallery