MATL, 8 bytes
'*'10tX"
'*' % Push '*' (string containing an asterisk)
10t % Push 10 twice
X" % Repeat the string ×ばつ10 times. Implicitly display
Luis Mendo
- 106.7k
- 10
- 139
- 382
Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Visit Stack Exchange'*'10tX"
'*' % Push '*' (string containing an asterisk)
10t % Push 10 twice
X" % Repeat the string ×ばつ10 times. Implicitly display