mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-19 03:23:49 +01:00
18 lines
379 B
Rust
18 lines
379 B
Rust
// Copyright (C) 2020 Christian Amsüss
|
|
//
|
|
// This file is subject to the terms and conditions of the GNU Lesser
|
|
// General Public License v2.1. See the file LICENSE in the top level
|
|
// directory for more details.
|
|
#![no_std]
|
|
|
|
use riot_wrappers::println;
|
|
use riot_wrappers::riot_main;
|
|
|
|
extern crate rust_riotmodules;
|
|
|
|
riot_main!(main);
|
|
|
|
fn main() {
|
|
println!("Hello Rust!");
|
|
}
|