summaryrefslogtreecommitdiff
path: root/isabelle-unicode/src/lib.rs
diff options
context:
space:
mode:
authorstuebinm2021-09-21 22:25:59 +0200
committerstuebinm2021-09-21 22:50:24 +0200
commit5a021caf3ff516c110571bfb4485e833ba8b1d06 (patch)
treebfaff792077a25c0754f6e7beed10e3f4864dd86 /isabelle-unicode/src/lib.rs
parent2eebd7b354432ae564757a93c7b8c44150b58010 (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/lib.rs')
-rw-r--r--isabelle-unicode/src/lib.rs17
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));
-
-// }