1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! # Phyla-Lang: Procedural Language Generation
//!
//! A Rust library that generates consistent, deterministic constructed languages (conlangs)
//! based on cultural personality traits and geographic influences.
//!
//! ## Core Concepts
//!
//! Languages **emerge** from parameterized cultural profiles. The same input parameters
//! always produce the same linguistic output (deterministic generation).
//!
//! ## Quick Start
//!
//! ```rust
//! use phyla_lang::{Language, CulturalProfile, Geography};
//!
//! // Create a language from cultural parameters
//! let coastal_culture = CulturalProfile {
//! agreeableness: 4.0,
//! openness: 3.0,
//! conscientiousness: 2.0,
//! extraversion: 3.0,
//! honesty_humility: 3.0,
//! emotionality: 4.0,
//! };
//!
//! let language = Language::from_culture(
//! coastal_culture,
//! Geography::Coastal,
//! 12345, // seed for deterministic generation
//! );
//!
//! // Translate words and phrases
//! let word = language.translate_word("house");
//! let phrase = language.translate_phrase("I bring the beer quickly");
//!
//! // The same input always produces the same output
//! assert_eq!(word, language.translate_word("house"));
//! ```
pub use ;
pub use ;
pub use Language;
pub use ;