diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-18 01:25:19 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-18 01:25:19 +0100 |
commit | 74ff39914bdc5c415be52160c63a4aba3dbfa125 (patch) | |
tree | bec2abb6d7063e6aa5dd5946022a231955be1a8a /examples/5.src | |
parent | Examples: new example (diff) | |
download | interpreter-74ff39914bdc5c415be52160c63a4aba3dbfa125.tar.gz interpreter-74ff39914bdc5c415be52160c63a4aba3dbfa125.tar.bz2 interpreter-74ff39914bdc5c415be52160c63a4aba3dbfa125.zip |
Lang: Start introducing support for function arguments
Diffstat (limited to 'examples/5.src')
-rw-r--r-- | examples/5.src | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/5.src b/examples/5.src index ad96168..573ee6a 100644 --- a/examples/5.src +++ b/examples/5.src @@ -3,7 +3,6 @@ let print_input = (input) => { return input; }; - let main = () => { return print_input(7); }; |