Update Example.roc

This commit is contained in:
Richard Feldman 2019-06-22 10:17:20 -04:00
parent f6096d629d
commit 77d9a13b10
2 changed files with 1 additions and 3 deletions

View file

@ -1,5 +1,3 @@
Example exposes [ program ]
program =
after (echo "What is your first name?"), ({}) ->
after readInput, (firstName) ->

View file

@ -9,7 +9,7 @@ use roc::parse;
use std::io;
fn main() -> std::io::Result<()> {
let mut file = File::open("test.roc")?;
let mut file = File::open("Example.roc")?;
let mut contents = String::new();
file.read_to_string(&mut contents)?;