Skip to content

Instantly share code, notes, and snippets.

use std::io::{self, Write};
fn main() {
let mut input = String::new();
let mut output = String::new();
loop {
print!("CL-Compact> ");
io::stdout().flush().unwrap();
input.clear();
output.clear();
io::stdin()