Browse Source

Fix example filename

github-actions
Garrit Franke 3 years ago
parent
commit
2b30ee50b2
  1. 2
      src/main.rs

2
src/main.rs

@ -5,7 +5,7 @@ mod lexer;
mod parser;
fn main() -> std::io::Result<()> {
let mut file = File::open("examples/hello_world.fx")?;
let mut file = File::open("examples/hello_world.sb")?;
let mut contents = String::new();
file.read_to_string(&mut contents)?;

Loading…
Cancel
Save