1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-21 20:43:50 +01:00

15 lines
257 B
Rust

// SPDX-FileCopyrightText: 2020 Christian Amsüss
// SPDX-License-Identifier: LGPL-2.1-only
#![no_std]
use riot_wrappers::println;
use riot_wrappers::riot_main;
extern crate rust_riotmodules;
riot_main!(main);
fn main() {
println!("Hello Rust!");
}