Skip to content

Instantly share code, notes, and snippets.

@andurilan
Created September 1, 2018 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andurilan/22b9daa557309c6e3414954d04fd7889 to your computer and use it in GitHub Desktop.
Save andurilan/22b9daa557309c6e3414954d04fd7889 to your computer and use it in GitHub Desktop.
pls.plus
#![feature(pattern_parentheses)]
#![feature(non_ascii_idents)]
#![feature(extern_prelude)]
#![feature(exclusive_range_pattern)]
#![feature(macro_literal_matcher)]
#![allow(unused_variables)]
#![allow(unused_mut)]
#![allow(unused_assignments)]
#![allow(unused_parens)]
#![allow(unreachable_code)]
#![allow(unreachable_patterns)]
#![allow(unused_parens)]
#![allow(unused_imports)]
#![allow(dead_code)]
#![allow(unknown_lints)]
pub extern crate errno;
pub extern crate exec;
pub extern crate glob;
pub extern crate libc;
pub extern crate linefeed;
pub extern crate nix;
pub extern crate regex;
pub extern crate sqlite;
pub extern crate time;
pub extern crate yaml_rust;
#[macro_use] pub extern crate nom;
#[path="installer.rs"] pub mod installer;
#[allow(cast_lossless)]
fn main()
{
let mut agent = installer::
Agent::new(0)
.employs()
.dispatches();
println!( "Shell( {:?} )", agent.clone() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment