summaryrefslogtreecommitdiffstats
path: root/svgbob_cli/examples/simple.rs
diff options
context:
space:
mode:
Diffstat (limited to 'svgbob_cli/examples/simple.rs')
-rw-r--r--svgbob_cli/examples/simple.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/svgbob_cli/examples/simple.rs b/svgbob_cli/examples/simple.rs
deleted file mode 100644
index 5c74d50..0000000
--- a/svgbob_cli/examples/simple.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-extern crate svgbob;
-
-fn main() {
- let input = r#"
- .-------------------------------------.
- | Hello here and there and everywhere |
- '-------------------------------------'
- "#;
- println!("svg: {}", svgbob::to_svg(input));
-}