Meta Project

The Unofficial Meta Documentation

SHIFT

Summary

SHIFT Shifts a numeric value the given amount

Category

MATH

Usage

SHIFT value1 value2

Arguments

value1 - value to shift

value2 - how many places to shift

Refinements

/LEFT - Shift Left

/RIGHT - Shift Right

Description

SHIFT Shifts a numeric value the given amount

Example Code

x: shift/right 132 2
write/line  x
x: shift/left 132 2
write/line  x

Result

33
16

Related

To be done. No other related method names assigned yet.

Back to the Meta Methods Reference index