genco 0.3.22

Even simpler code generation for Rust.
Documentation
# GenCo

[![Build Status](https://travis-ci.org/udoprog/genco.svg?branch=master)](https://travis-ci.org/udoprog/genco)
[![crates.io](https://img.shields.io/crates/v/genco.svg?maxAge=2592000)](https://crates.io/crates/genco)

GenCo is an even simpler code generator for Rust, specifically written for use in [reproto][reproto].

It does not deal with language-specific syntax, instead it can do some of the basic necessities
through specialization.

* Handle imports, if needed.
* Quote strings according to language convention.

[reproto]: https://github.com/reproto/reproto

## Examples

This is an example building some JavaScript:

```rust
#[macro_use]
extern crate genco;

use genco::Quoted;

fn main() {
    let mut file: Tokens<JavaScript> = Tokens::new();

    file.push("function foo(v) {");
    file.nested(toks!("return v + ", ", World".quoted(), ";"));
    file.push("}");

    file.push(toks!("foo(", "Hello".quoted(), ");"));

    println!("{}", file.to_string().unwrap());
}
```

Running this example would print:

```js
function foo(v) {
  return v + ", World";
}
foo("Hello");
```