Skip to content
Snippets Groups Projects
gpl.rs 160 B
Newer Older
use std::process;

const LICENSE: &'static str = include_str!("../../COPYING");

pub fn show_license_and_exit() {
	println!("{}", LICENSE);
	process::exit(0);
}