RosettaCodeData/Task/Scope-Function-names-and-labels/Bc/scope-function-names-and-labels.bc

11 lines
192 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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 */