ALIEN:
Factor documentation > Factor handbook > C library interface > Passing data between Factor and C > Passing pointers to C functions > Alien addresses > Alien object literal syntax
Next:DLL"


Vocabulary
alien.syntax

Syntax
ALIEN: address


Inputs and outputs
addressa non-negative hexadecimal integer


Word description
Creates an alien object at parse time.

Notes
Alien objects are invalidated between image saves and loads, and hence source files should not contain alien literals; this word is for interactive use only. See Alien expiry for details.

Definition
USING: alien parser sequences ;

IN: alien.syntax

SYNTAX: ALIEN: 16 scan-base <alien> suffix! ;