RosettaCodeData/Task/Scope-Function-names-and-labels/Bc/scope-function-names-and-labels.bc
2023-07-01 13:44:08 -04: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 */