Name

eval — Evaluate a YCP value.

Synopsis

eval (void); 

Description

See also the builtin ``, which is kind of the counterpart to eval.

Usage

  eval (``(1+2)) -> 3
  { term a = ``add(); a = add(a, [1]); a = add(a, 4); return eval(a); } -> [1,4]