An open API service indexing awesome lists of open source software.

https://github.com/metastable-void/ja-colloquial-rs


https://github.com/metastable-void/ja-colloquial-rs

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# Japanese Colloquial Christian Bible Library (Rust)

## Usage
```rust
use ja_colloquial::books;

let books = books();

assert!(books.book_names.contains(&"ge".to_string()));
assert_eq!(
books.get_verse("ge", 4, 13).unwrap().t,
"カインは主に言った、「わたしの罰は重くて負いきれません。",
);

println!("{:?}", books.random_verse());
```