routine take
Documentation for routine take
assembled from the following types:
class Mu
From Mu
(Mu) method take
method take()
Returns the invocant in the enclosing gather block.
sub insert(, +)say insert ':', <a b c>;# OUTPUT: «(a : b : c)»
class Mu
From Mu
(Mu) 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