You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Blocks are a means to define a function or set of commands within a command, they can be given a name and can accept macro arguments after the opening curly bracket which will be appended to the function call.
block [name] { [data] ... }
ex.
function example{
block example_block {
say named block
}
block {
say unnamed block
}
block another_example { with some data
say named block2
}
block { with some data
say unnamed block2
}
}