1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2024-12-12 11:29:50 +00:00
UltimateTrainingModpack/src/lib.rs

13 lines
192 B
Rust
Raw Normal View History

2020-04-08 04:21:52 +00:00
#![no_std]
2020-04-08 05:13:06 +00:00
use skyline::prelude::*;
skyline::setup!();
2020-04-08 04:21:52 +00:00
#[no_mangle]
pub fn main() {
2020-04-08 05:13:06 +00:00
println!("Hello from Skyline Rust Plugin!\n");
2020-04-08 04:21:52 +00:00
2020-04-08 05:13:06 +00:00
for i in 0..3 {
println!("{}", i);
2020-04-08 04:21:52 +00:00
}
}