1
2
3
4
5
6
7
#![no_std]
#![feature(alloc)]
extern crate alloc;

use alloc::prelude::*;

pub static mut ARGUMENTS: Option<Vec<String>> = None;