In Mu§
See primary documentation in context for method take
method take()
Returns the invocant in the enclosing gather block.
sub insert(, +)say insert ':', <a b c>;# OUTPUT: «(a : b : c)»
In Mu§
See primary documentation in context for routine take
sub take(\item)
Takes the given item and passes it to the enclosing gather
block.
my = 6;my = 49;gather for ^.say; # six random values