Closed maxonfjvipon closed 12 months ago
In EO we have $ object which is actually a syntax sugar and refer to current abstract object it's used in So the next code:
$
[] > foo assert-that > @ 2.plus 2 $.equal-to 4
actually means:
[] > foo assert-that > @ 2.plus 2 foo.equal-to 4 # foo.@.equal-to --> assert-that.equal-to
It would be nice to write a blog post about it
@Graur well done! I'm closing it
In EO we have
$
object which is actually a syntax sugar and refer to current abstract object it's used in So the next code:actually means:
It would be nice to write a blog post about it