-
-
Notifications
You must be signed in to change notification settings - Fork 159
Little Languages
andychu edited this page Sep 24, 2017
·
4 revisions
See Unix Tools for tools that have some of these languages
Should be unified under "OCRE"
- regex: BRE, ERE, PCRE, etc. -- see Unix Tools
- glob and extended glob (from
ksh
I think) - scanf -
%
style - strptime -
%
style
Should be unified under shell-style.
- shell style with
$var
and${var}
-- sh, PHP, and now JavaScript -
printf
-style -- see Unix Tools - bash uses
\h \W
for the prompt - Swift uses
\(var)
- Python
.format()
uses{var}
. And I think{{
for escaping. - Most web template languages (e.g. Django, Go) use
{{var}}