ALSO Similar to the Rebol R3 function ALSO, a convenience to safe without creating your own temporary variable
CONTROLS
ALSO value1 value2
value1 - value to be safed
value2 - statement or block
This method has no refinements
ALSO Similar to the Rebol R3 funciton ALSO, a convenience to safe without creating your own temporary variable
An excellent use of ALSO can be found in the Fibonacci example
previous: also Fibonacci
Fibonacci: Fibonacci + previous
where ALSO A B in this situation would mean:
let safe natural! a
b
safe
N.A.