DEV Community

Discussion on: Write a function that shows off something unique or interesting about the language you're using

Collapse
 
alexandrugrusu profile image
Alex George • Edited

In bash:

for i in {1..12}; do for j in $(seq 1 $i); do echo -ne $i×$j=$((i*j))\t;done; echo;done

imgur.com/Z7jWFhI