RosettaCodeData/Task/Scope-Function-names-and-labels/Sidef/scope-function-names-and-labels.sidef

10 lines
155 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
# Nested functions
func outer {
func inner {}; # not visible outside
}
# Nested classes
class Outer {
class Inner {}; # not visisble outside
}