rustacean 0.1.4

A tools for rustaceans to say their thought
Documentation
# Rustacean

A tool for Rustacean to print something in application


## How to use

- Add dependence in `Cargo.toml`

```toml
rustacean = "0.1.x"

```

- Coding

```rust
extern crate rustacean;

use rustacean::say;

// in main
rustacean::say("content").unwrap();
```