diff options
author | stuebinm | 2021-09-21 22:25:59 +0200 |
---|---|---|
committer | stuebinm | 2021-09-21 22:50:24 +0200 |
commit | 5a021caf3ff516c110571bfb4485e833ba8b1d06 (patch) | |
tree | bfaff792077a25c0754f6e7beed10e3f4864dd86 /isabelle-unicode/src | |
parent | 2eebd7b354432ae564757a93c7b8c44150b58010 (diff) |
proof of concept: talking to `isabelle server`
for now this just checks a file given on the command line, and panics if
anything at all goes wrong.
Diffstat (limited to 'isabelle-unicode/src')
-rw-r--r-- | isabelle-unicode/src/lib.rs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/isabelle-unicode/src/lib.rs b/isabelle-unicode/src/lib.rs index 30a7cec..b9fcc37 100644 --- a/isabelle-unicode/src/lib.rs +++ b/isabelle-unicode/src/lib.rs @@ -53,20 +53,3 @@ impl PrettyUnicode for str { } } -// fn main() { - -// let stdin = io::stdin(); - -// stdin.lock() -// .lines() -// .filter_map(|line| match line { -// Ok(line) if line.trim().is_empty() -// => Some("\n".to_string()), -// Ok(line) -// => line.to_pretty_unicode(), -// Err(_) -// => None -// }) -// .for_each(|line| print!("{}", line)); - -// } |