Macro crs_bind::prelude::entry [−][src]
Specifies the entrypoint for the robot.
Examples
#![no_std] #![no_main] use vex_rt::prelude::*; struct FooBot; impl Robot for FooBot { fn new(_p: Peripherals) -> Self { FooBot } } entry!(FooBot);