Crates.io | beemovie |
lib.rs | beemovie |
version | 1.0.1 |
source | src |
created_at | 2020-12-13 03:56:42.935254 |
updated_at | 2021-04-11 05:46:49.750467 |
description | Bee Movie crate. |
homepage | |
repository | https://github.com/roosterchicken/beemovie-rs |
max_upload_size | |
id | 322315 |
size | 62,527 |
Bee Movie crate.
Put this in your Cargo.toml
beemovie = '1.0.1'
This function returns a sentence or two from the bee movie.
extern crate beemovie;
fn main() {
println!("Sentence: {}", beemovie::sentence(1));
}
This function returns the entire Bee Movie script.
extern crate beemovie;
fn main() {
println!("{}", beemovie::script());
}
This function returns a word from the Bee Movie.
extern crate beemovie;
fn main() {
println!("Word: {}", beemovie::word(1));
}
This function returns a paragraph from the Bee Movie.
extern crate beemovie;
fn main() {
println!("Paragraph: {}", beemovie::paragraph(1));
}