mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 09:58:02 +00:00
12 lines
145 B
Rust
12 lines
145 B
Rust
// run-pass
|
|
|
|
#![allow(unused_imports)]
|
|
#![no_std]
|
|
|
|
extern crate std;
|
|
use std::ffi::c_void;
|
|
|
|
pub fn main() {
|
|
std::println!("Hello world!");
|
|
}
|