In any programming language, there are well-defined rules stating the order in which expressions are evaluated.
0
votes
1answer
112 views
Force evaluation of anonymous type query before storing in session
I need to bring back several user specific data sets to bind to drop down lists for a search page that is frequently (re)loaded (potentially not being able to utilize postback data). I want to hit the ...
0
votes
1answer
329 views
Order of evaluation in scheme
This is what works:
(define obj1 (maak-object (coord 1 1) #f #f #t))
(set! karaktersenobjectenlijst (append karaktersenobjectenlijst
(list (list 'object obj1)))))
...