📅  最后修改于: 2022-03-11 14:50:49.046000             🧑  作者: Mango
# Powershell processes in order (top-down),
# so the function definition needs to be before the function call:
function email($text){
#email $text
}
#Do things |
foreach{
email($_)
}