Little Languages - oils-for-unix/oils GitHub Wiki
See Unix Tools for tools that have some of these languages
Pattern Languages
Should be unified under "OCRE"
- regex: BRE, ERE, PCRE, etc. -- see Unix Tools
- glob and extended glob (from
kshI think) - scanf -
%style - strptime -
%style
Formatting Languages
Should be unified under shell-style.
- shell style with
$varand${var}-- sh, PHP, and now JavaScript printf-style -- see Unix Tools- bash uses
\h \Wfor the prompt - Swift uses
\(var) - Python
.format()uses{var}. And I think{{for escaping. - Most web template languages (e.g. Django, Go) use
{{var}}