Meta Project

The Unofficial Meta Documentation

ALSO

Summary

ALSO Similar to the Rebol R3 function ALSO, a convenience to safe without creating your own temporary variable

Category

CONTROLS

Usage

ALSO value1 value2

Arguments

value1 - value to be safed

value2 - statement or block

Refinements

This method has no refinements

Description

ALSO Similar to the Rebol R3 funciton ALSO, a convenience to safe without creating your own temporary variable

Example Code

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

Related

N.A.

Back to the Meta Methods Reference index