alias hint {
var %a, %b, %c = $replace($2, $, \$, \, \\), %i = 1
if ($prop == consenant) { %b = $regsub($1, /[^aeiou ]/ig, %c, %a) }
elseif ($prop == consenant2) { %b = $regsub($1, /[^aeiou]/ig, %c, %a) }
elseif ($prop == step) {
while (%i <= $len($1)) {
%a = $+(%a, $mid($1, %i, $3), $2)
inc %i $calc($3 + 1)
}
}
elseif ($prop == vowel) { %b = $regsub($1, /[aeiou]/ig, %c, %a) }
elseif ($prop == vowel2) { %b = $regsub($1, /[aeiou ]/ig, %c, %a) }
return %a
}