premise-rust-app 0.1.1

A minimal Rust application template that prints a greeting.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Returns the greeting printed by the application.
pub fn message() -> &'static str {
    "hello premise-app!"
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn message_returns_greeting() {
        assert_eq!(message(), "hello premise-app!");
    }
}