beemovie

Crates.iobeemovie
lib.rsbeemovie
version1.0.1
sourcesrc
created_at2020-12-13 03:56:42.935254
updated_at2021-04-11 05:46:49.750467
descriptionBee Movie crate.
homepage
repositoryhttps://github.com/roosterchicken/beemovie-rs
max_upload_size
id322315
size62,527
(roosterchicken)

documentation

README

beemovie-rs

Bee Movie crate.

Usage

Put this in your Cargo.toml

beemovie = '1.0.1'

Documentation

sentence()

This function returns a sentence or two from the bee movie.

extern crate beemovie;
fn main() {
    println!("Sentence: {}", beemovie::sentence(1));
}

script()

This function returns the entire Bee Movie script.

extern crate beemovie;
fn main() {
    println!("{}", beemovie::script());
}

word()

This function returns a word from the Bee Movie.

extern crate beemovie;
fn main() {
    println!("Word: {}", beemovie::word(1));
}

paragraph()

This function returns a paragraph from the Bee Movie.

extern crate beemovie;
fn main() {
    println!("Paragraph: {}", beemovie::paragraph(1));
}
Commit count: 19

cargo fmt