3 个不稳定版本
0.2.1 | 2024 年 7 月 13 日 |
---|---|
0.2.0 | 2024 年 7 月 13 日 |
0.1.0 | 2024 年 7 月 13 日 |
#126 在 游戏中
每月 319 次下载
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