Load the 'simple' intruction file into a string.

Need to incorporate flags OR/AND stdin parsing in a later stage.
This commit is contained in:
mhart 2020-10-11 15:14:20 +02:00
parent 601f195c78
commit 699933fcfd
1 changed files with 3 additions and 1 deletions

View File

@ -11,4 +11,6 @@ enum Instructions {
F, F,
} }
fn main() {} fn main() {
let file_data = include_str!("../two_robots.txt");
}