expr. ( expr -- ) (original) (raw)

expr. ( expr -- )

Vocabulary
boolean-expr

Inputs

expr a

Outputs
None

Word description
Print the expression followed by newline.

Examples

USING: boolean-expr ; X Y ⋁ X ¬ Y ⋀ ⋀ op.
((X ⋀ (¬X ⋀ Y)) ⋁ (Y ⋀ (¬X ⋀ Y)))

See also
op.

Definition

USING: io ;

IN: boolean-expr

: expr. ( expr -- ) (expr.) nl ;