fork download
  1. (defun f (s) (if (string-not-equal (subseq s 0 1) "#")(f (print(concatenate 'string (subseq s 1) "#"))) s))
  2. (f (make-string 11 :initial-element #\Space))
Success #stdin #stdout 0s 203840KB
stdin
Standard input is empty
stdout
"          #" 
"         ##" 
"        ###" 
"       ####" 
"      #####" 
"     ######" 
"    #######" 
"   ########" 
"  #########" 
" ##########" 
"###########"