Skip to content

Commit

Permalink
chore(): update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
AlenVelocity committed Mar 8, 2022
1 parent 9036dfe commit b7f7bf5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions examples/input.etrl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
include "std:util";

set main = fun() {
set name = input("What is your name? ");
set age = input("How old are you? ");

put("Hello, " + name + "! You are " + age + " years old.");
};

main()

0 comments on commit b7f7bf5

Please sign in to comment.