roto 0.10.0

a statically-typed, compiled, embedded scripting language
Documentation
use std::sync::Arc;

use crate::{Runtime, library, runtime::OptCtx};

impl<Ctx: OptCtx> Runtime<Ctx> {
    /// Add functions using I/O to the runtime.
    ///
    /// These functions are disabled by default because Roto might be used in a
    /// context where using I/O is not permitted.
    ///
    /// For now, this just adds the `print` function. More functions will be
    /// added in the future.
    pub fn add_io_functions(&mut self) {
        self.add(library! {
            /// Print a string to stdout
            fn print(s: Arc<str>) {
                println!("{s}");
            }
        })
        .unwrap();
    }
}