Skip to content

Latest commit

 

History

History

ndless-macros

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

ndless-macros

Crates.io Docs.rs

This crate is now deprecated. You no longer need this—just declare a fn main() as normal.

Ndless procedural macros for common tasks, such as marking the main function of the program. It will automatically store the command-line arguments, and mark the function as the entrance to the program. You probably don't want to use this crate directly—check out ndless instead.

#![no_std]
#![no_main]

extern crate ndless_handler;

use ndless::prelude::*;

#[entry]
fn main() {
    // Code
}