#Defining function in the order wanted for clarity, at least in one file
3 messages · Page 1 of 1 (latest)
I believe it's not not possible to implement, but very difficult. And I don't really see the payoff. What if the variable is shadowed later:
#let x() = 1;
#let do_x() = x;
#let x() = 2;
#do_x() // prints 1, as it should
I kinda forgot this was interpreted to be honest ~~