duckscript 0.10.0

Simple, extendable and embeddable scripting language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # print_preprocessor
//!
//! The print pre processor implementation.
//!

pub(crate) fn run(arguments: &Option<Vec<String>>) {
    if let Some(arguments_vec) = arguments {
        for argument in arguments_vec {
            print!("{} ", argument);
        }
    }

    println!();
}