Skip to content

Operators

Foks edited this page Jun 12, 2020 · 4 revisions

[WIP] The idea of "safe"

Safe, what is safe in L++? Safe is a way to make sure you're calling/editing/reading a variable that you're actually sure exists. How do we use "safe" in L++? Well, simply we can use my&.cool&.variable = 40 What this is the equivalent of doing is: if my and my.cool then return end; my.cool.variable = 40

Clone this wiki locally