gistlib
main.mn = input('Enter the number of times you want to print "Hello World": '); for i = 1:n disp('Hello World'); end 115 chars5 lines
n = input('Enter the number of times you want to print "Hello World": '); for i = 1:n disp('Hello World'); end
gistlibby LogSnag