sub
ACTION:
define a sub. (like a function but not returning a value)
EXAMPLE:
sub triple(i as int, j as int) j=i*3 end sub
RELATED:
procedures
function
method