scramble 0.1.0

Scramble word game. Boggle-like word game hosted at http://scramblelovers.com. Multi-user, chat-enabled web game online.
Documentation
1
2
3
4
5
6
extern crate scramble;
use scramble::{score_word};

fn main() {
    println!("score of {} is {} and score of {} is {}", "leaf", score_word("leaf"), "hi", score_word("hi"));
}