RosettaCodeData/Task/Scope-Function-names-and-labels/Bc/scope-function-names-and-labels.bc
2017-09-25 22:28:19 +02:00

10 lines
192 B
Text

f(1) /* First output line */
define f(x) {
return(x)
}
f(3) /* Second output line */
define f(x) {
return(x - 1)
}
f(3) /* Third output line */