We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99ffcc9 commit 214acacCopy full SHA for 214acac
src/lib.rs
@@ -16,6 +16,7 @@
16
17
pub use forrustts_core::prelude::*;
18
pub mod genetics;
19
+pub mod prelude;
20
21
/// Get the forrustts version number.
22
pub fn version() -> &'static str {
src/prelude.rs
@@ -0,0 +1,10 @@
1
+//! Prelude
2
+//!
3
+//! # Examples
4
5
+//! ```
6
+//! use forrustts::prelude::*;
7
8
+
9
+pub use crate::Position;
10
+pub use crate::Time;
0 commit comments