conch-runtime 0.1.2

A library for evaluating/executing programs written in the shell programming language.
Documentation
1
2
3
4
5
6
//! A utility that will print out the current working directory
use std::env;

fn main() {
    println!("{}", env::current_dir().expect("failed to get cwd").display());
}