https://github.com/metastable-void/ja-colloquial-rs
https://github.com/metastable-void/ja-colloquial-rs
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/metastable-void/ja-colloquial-rs
- Owner: metastable-void
- License: apache-2.0
- Created: 2025-11-09T16:57:47.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-11-10T13:05:01.000Z (8 months ago)
- Last Synced: 2025-11-18T12:09:20.355Z (8 months ago)
- Language: Rust
- Size: 1.48 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.APACHE
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());
```