File: example-read.rs

package info (click to toggle)
rust-qr2term 0.3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 184 kB
  • sloc: makefile: 2
file content (4 lines) | stat: -rw-r--r-- 118 bytes parent folder | download | duplicates (2)
1
2
3
4
fn main() {
    let line = std::io::stdin().lines().next().unwrap().unwrap();
    qr2term::print_qr(line).unwrap();
}