2021-05-18 20:46:41 -05:00
|
|
|
#[doc = include_str!("input.md")]
|
2017-12-19 16:43:32 -06:00
|
|
|
pub struct SomeStruct;
|
|
|
|
|
2015-04-15 09:40:04 -05:00
|
|
|
pub fn main() {
|
|
|
|
const INPUT_TXT: &'static str = include_str!("input.txt");
|
|
|
|
const INPUT_BIN: &'static [u8] = include_bytes!("input.bin");
|
|
|
|
|
|
|
|
println!("{}", INPUT_TXT);
|
|
|
|
println!("{:?}", INPUT_BIN);
|
|
|
|
}
|