#wordle #game #cli

rowdle

Rust 的 Wordle 后端

3 个不稳定版本

0.2.1 2024 年 7 月 13 日
0.2.0 2024 年 7 月 13 日
0.1.0 2024 年 7 月 13 日

#126游戏

Download history 310/week @ 2024-07-12 9/week @ 2024-07-19

每月 319 次下载

MIT 许可证

15KB
298

Rowdle

一个简单、快速且轻量级的基于 Wordle 的游戏后端。将其视为一个 Wordle 克隆,能够执行比仅单词更多的操作,如 loldle、numberdle 等。(请参阅示例目录以了解一些可能性)

安装

cargo add rowdle

使用方法

// initialize a game with 5 letters and the word "hello" as the target
// the word list is a list of possible words that the target can be
let mut game = rowdle::Game::new(5, "guess", vec![
    "hello",
    "world",
    "rust",
    "rowdl",
    "wordl",
]);

let guess = "world";

let result = game.guess(guess);

println!("{:?}", result.board(None,None));

依赖项

~285–750KB
~18K SLoC