5.11 return more than value from a procedure

Maple can return multiple values. Make sure to use the comma "," in the body of the procedure to separate each return value. Example:

size_matrix:=proc(x) 3*x, 4*x; end proc; 
row,col :=size_matrix(5);