pub fn set_result(value: String)Expand description
Store the result of the last expression evaluation
Called by generated wrapper code to store the result value. The result is formatted as a Debug string for transmission.
ยงExamples
use oxur_repl::subprocess::set_result;
// Typically called by generated code:
let value = 42;
set_result(format!("{:?}", value));