14 lines
143 B
Rust
14 lines
143 B
Rust
#![crate_name="first"]
|
|
|
|
pub mod prelude {
|
|
pub use crate::Bot;
|
|
}
|
|
|
|
pub struct Bot;
|
|
|
|
impl Bot {
|
|
pub fn new() -> Bot {
|
|
Bot
|
|
}
|
|
}
|