pub unsafe extern "C" fn YASL_execute_REPL(
    S: *mut YASL_State
) -> c_int
Expand description

[-0, +0] Execute the bytecode for the given YASL_State in REPL mode. The only difference between YASL_execute_REPL and YASL_execute is that YASL_execute_REPL will print the last statement passed to it if that statement is an expression. @param S the YASL_State to use to execute the bytecode. @return 0 on successful execution, else an error code.