This removes the exclusive from the res names and edge names. We now require that the names should be lists of strings, however they can still be single strings if that can be determined statically. Programmers should explicitly wrap their variables in a string by interpolation to force this, or in square brackets to force a list. The former is generally preferable because it generates a small function graph since it doesn't need to build a list.
17 lines
402 B
Plaintext
17 lines
402 B
Plaintext
-- main.mcl --
|
|
import "fmt"
|
|
|
|
# test a function with part of the expression scoped from outside
|
|
$c1 = 42 # put this after to confirm any-order rules
|
|
$constmult = func($x) {
|
|
$c1 * $x * $c2
|
|
}
|
|
$c2 = 37 # put this after to confirm any-order rules
|
|
|
|
$num = 13
|
|
$out = $constmult($num) # 20202
|
|
|
|
test [fmt.printf("%d * %d * %d is %d", $c1, $num, $c2, $out),] {}
|
|
-- OUTPUT --
|
|
Vertex: test[42 * 13 * 37 is 20202]
|