fac: function [n][r: 1 repeat i n [r: r * i] r] fac: function [n][repeat i also n n: 1 [n: n * i] n]