Parses and evaluates the specified sleep code returning the value of the code.
"code" - a string containing the statements to evaluate.
The result of the statements once parsed and evaluated.
$x = 5; $cond = '$x < 8'; eval('while ('.$cond.') { println("val: $x"); $x++; }');
val: 5 val: 6 val: 7