libsix 0.0.2

Compact programming language built on top of Rust ecosystem.
Documentation
1
2
3
4
5
6
use unmem::DeOwn;

#[inline]
pub fn args() -> Vec<&'static str> {
    std::env::args().map(|i| i.leak()).collect()
}