kalker/tests/redefining.kalker

7 lines
95 B
Plaintext
Raw Normal View History

2022-01-23 02:19:38 +01:00
x = 2
x = 3
f(x, y, z) = x * y = z
f(x, 2, 6)
f(x, y, z) = 2 * x * y = z
2022-01-23 02:19:38 +01:00
f(2, 3, 12) and x = 3