wordletron 0.2.0

A solver for and command-line version of Wordle
Documentation
1
2
3
4
5
6
use std::io;
use wordletron::play_wordle;

fn main() -> io::Result<()> {
    play_wordle(None)
}