neutron-engine 0.1.3

A lightweight markup parser for the Neutron styling language (.nt)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::process::Command;
use std::RealTime;
use std::println;
 fn main(){
    let time= RealTime::now();
    let output = Command::new("ls")
        .output()
        .expect("Failed to execute command");
    let elapsed = time.elapsed();
    std::println("Command output: {}", String::from_utf8_lossy(&output.stdout));    
    std::println("Execution time: {:?}", elapsed);  
 }