openethereum/src/lib.rs

15 lines
205 B
Rust
Raw Normal View History

2015-11-24 22:21:15 +01:00
#[macro_use] extern crate log;
/// Silly function to return 69.
///
/// # Example
///
/// ```
/// assert_eq!(ethcore::sixtynine(), 69);
/// ```
pub fn sixtynine() -> i32 {
debug!("Hello world!");
69
2015-11-24 21:05:08 +01:00
}
2015-11-24 22:21:15 +01:00