diff options
| author | suresh <sureshkrishnan.ai@gmail.com> | 2026-01-25 11:43:23 -0500 |
|---|---|---|
| committer | suresh <sureshkrishnan.ai@gmail.com> | 2026-01-25 11:43:23 -0500 |
| commit | 26a0b55ed5bce4ad0ba2af109cfc96da7be2e34c (patch) | |
| tree | 35ba8d7742b8ac727bfc6c4c73ab8b70f6eedb53 /tests/functions/test_lambda_arrow.zc | |
| parent | 0bb69cb67078dfa921b5b8a42275ef31dfbc9a56 (diff) | |
| parent | 489336b2101bf16edeec7bfc4379408eb19b936e (diff) | |
Merge branch 'main' into JsonType
# Conflicts:
# examples/data/json_config.zc
Diffstat (limited to 'tests/functions/test_lambda_arrow.zc')
| -rw-r--r-- | tests/functions/test_lambda_arrow.zc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/functions/test_lambda_arrow.zc b/tests/functions/test_lambda_arrow.zc index 111487d..b4c8edc 100644 --- a/tests/functions/test_lambda_arrow.zc +++ b/tests/functions/test_lambda_arrow.zc @@ -4,24 +4,24 @@ fn compute(op: fn(I32, I32) -> I32, a: I32, b: I32) -> I32 { } test "test_lambda_arrow" { - var doubler = x -> x * 2; - var res1 = doubler(5); + let doubler = x -> x * 2; + let res1 = doubler(5); "doubler(5) = {res1}"; if res1 != 10 { exit(1); } - var add = (x, y) -> x + y; - var res2 = add(10, 20); + let add = (x, y) -> x + y; + let res2 = add(10, 20); "add(10, 20) = {res2}"; if res2 != 30 { exit(1); } - var res3 = compute((a, b) -> a * b, 3, 4); + let res3 = compute((a, b) -> a * b, 3, 4); "compute((a, b) -> a * b, 3, 4) = {res3}"; if res3 != 12 { exit(1); } } test "lambda_inference_repro" { - var dble = x -> x * 2.0; - var res = dble(9.0); + let dble = x -> x * 2.0; + let res = dble(9.0); if res != 18.0 { exit(1); } |
