2020-05-10 10:54:30 -04:00
|
|
|
// Compiler:
|
|
|
|
//
|
|
|
|
// Run-time:
|
|
|
|
// status: 0
|
|
|
|
|
2025-04-17 08:34:28 -04:00
|
|
|
#![feature(no_core)]
|
2020-05-10 10:54:30 -04:00
|
|
|
#![no_std]
|
|
|
|
#![no_core]
|
2024-12-14 09:13:12 +01:00
|
|
|
#![no_main]
|
2020-05-10 10:54:30 -04:00
|
|
|
|
2025-03-08 16:47:58 +05:30
|
|
|
extern crate mini_core;
|
|
|
|
use mini_core::*;
|
2020-05-10 10:54:30 -04:00
|
|
|
|
2024-12-14 09:13:12 +01:00
|
|
|
#[no_mangle]
|
|
|
|
extern "C" fn main(argc: i32, _argv: *const *const u8) -> i32 {
|
2020-05-10 10:54:30 -04:00
|
|
|
0
|
|
|
|
}
|