mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-13 18:43:19 +00:00
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
|
|
}
|
|
}
|