Skip to main content
2 of 6
added 100 characters in body
steenbergh
  • 8.2k
  • 1
  • 27
  • 43

##QBIC, 16 bytes

:#*|[1,a|B=B+A?B 

Explanation:

: Gets a cmd line param as number called 'a' #*| Define A$ as '*' [1,a| FOR b = 1 to a B=B+A Extend B$ with another astrix ?B Print B$ <FOR LOOP implicitly closed> 
steenbergh
  • 8.2k
  • 1
  • 27
  • 43