Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$ d=(a=1 b=2 c=3)
$ echo ${d.b}
2
$ for i in a b c;do print ${d.[red]$i[/red]};done
ksh93: syntax error: `.' unexpected.