mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 12:24:45 +00:00
7 lines
128 B
Python
7 lines
128 B
Python
# Typo: Inu
|
|
add x: Int, y: Inu, z: Int = x + y + z
|
|
|
|
# 3rd arg is wrong
|
|
print! add(1, 2, "")
|
|
# missing argument
|
|
print! add(1, 2)
|