goish 0.16.0

Goish Rust — write Rust using Go idioms. Ports Go's standard library and syntax so Go programmers can write Rust code that reads and feels like Go.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// text: namespace for text/{tabwriter, scanner, template}.
//
//   Go                                  goish
//   ─────────────────────────────────   ──────────────────────────────────
//   "text/tabwriter"                    goish::text::tabwriter
//   "text/scanner"                      goish::text::scanner
//   "text/template"                     goish::text::template

pub mod scanner;
pub mod tabwriter;
pub mod template;