Data update
This commit is contained in:
parent
29a5eea0d4
commit
5c1bb7bfa9
2011 changed files with 35081 additions and 3229 deletions
14
Task/Sierpinski-triangle/EasyLang/sierpinski-triangle.easy
Normal file
14
Task/Sierpinski-triangle/EasyLang/sierpinski-triangle.easy
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
size = bitshift 1 4 - 1
|
||||
for y = size downto 0
|
||||
for i = 0 to y - 1
|
||||
write " "
|
||||
.
|
||||
for x = 0 to size - y
|
||||
if bitand x y <> 0
|
||||
write " "
|
||||
else
|
||||
write "* "
|
||||
.
|
||||
.
|
||||
write "\n"
|
||||
.
|
||||
Loading…
Add table
Add a link
Reference in a new issue