Functions and Fractals: Sierpinski triangles

  • + 0 comments

    Bash

    for((y=64;y--;));do s="";for((x=64;x--;));do(((x-y/2)&y))&&s+=" "||s+="Δ";done;echo "$s";done