summary refs log tree commit diff
path: root/lib/src/lib.rs
blob: b198f101c42acaf9598f614a400af30f88fc2da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
pub mod error;
pub mod prelude;

pub use crate::prelude::Result;


pub fn greeting() -> Result<()> {
  println!("Hello, Irenes!");

  Ok(())
}