10 个版本 (2 个稳定版)
1.0.1 | 2021年4月11日 |
---|---|
1.0.0 | 2021年4月10日 |
0.2.3 | 2021年4月10日 |
0.2.2 | 2021年1月6日 |
0.1.6 | 2020年12月18日 |
在 视频 类别中排名第172
每月下载量 39 次
在 2 个库中使用
55KB
102 代码行
beemovie-rs
Bee Movie 库。
用法
将以下内容放入你的 Cargo.toml
beemovie = '1.0.1'
文档
sentence()
此函数返回蜂电影中的一句话或两句话。
extern crate beemovie;
fn main() {
println!("Sentence: {}", beemovie::sentence(1));
}
script()
此函数返回蜂电影完整剧本。
extern crate beemovie;
fn main() {
println!("{}", beemovie::script());
}
word()
此函数返回蜂电影中的一个单词。
extern crate beemovie;
fn main() {
println!("Word: {}", beemovie::word(1));
}
paragraph()
此函数返回蜂电影中的一个段落。
extern crate beemovie;
fn main() {
println!("Paragraph: {}", beemovie::paragraph(1));
}
依赖项
~310KB