@
The @
symbol is usually followed by a resource identifier.
@("https://styio.org");
Defining variables means bringing resources into the scope of the current code.
@(x, y);
Styio's resource identifier can be:
External Package
External URL Link
Variable
Function
Struct Type
Trait Type
Read
=> Mutable
@(d) <- @("./data.json"); // Comprehensive
@(d <- "./data.json"); // Recursive
=> Immutable
d := <- @("./data.json");
Write
d -> @("./data.json");
Last updated