Add emoji to form example

This commit is contained in:
Jan Van Bruggen 2022-01-26 19:08:26 -07:00
parent 78be942918
commit e36b94fc53
2 changed files with 2 additions and 2 deletions

View file

@ -380,7 +380,7 @@ mod cli_run {
executable_filename: "form",
stdin: &["Giovanni\n", "Giorgio\n"],
input_file: None,
expected_ending: "Hi, Giovanni Giorgio!\n",
expected_ending: "Hi, Giovanni Giorgio! 👋\n",
use_valgrind: true,
},
tui:"tui" => Example {

View file

@ -9,4 +9,4 @@ main =
firstName <- await Stdin.line
_ <- await (Stdout.line "What's your last name?")
lastName <- await Stdin.line
Stdout.line "Hi, \(firstName) \(lastName)!"
Stdout.line "Hi, \(firstName) \(lastName)! 👋"