there seem to be two extremes of design styles, reflecting a dichotomy between expressive complexity and functional minimalism. this dichotomy may correspond to deeper psychological or cultural tendencies. it manifests not only in programming languages, but also in written language, particularly in typography.
this style favors special characters, combinations of special characters, and abbreviations. examples include: apl, mathematical notation, haskell, perl.
such systems seek expressive power through layered meanings, much like mathematical notation or apl, which rely on compact symbols. they feature a dense symbolic vocabulary and require a tediously acquired, shared understanding of esoteric symbols. these systems often use ornate and highly contextualized forms.
this style prioritizes words from natural language, and alphanumeric characters. examples include: coffeescript, scheme, ruby.
these systems employ minimalist, uniform notation, or attempt to approximate spoken language. they seek accessibility and clarity, aiming to reduce the cognitive load on users. this approach often favors streamlined and universal formats.
example (vbscript)
if 3 = x then msgbox "test" end if for each a in list: msgbox a: next
benefit: quick to type
example (c)
if (3 == x) { printf("test"); } for (int i=1; i<array.size; i+=1) { printf("%u", array.data[index]); }
example (scheme)
(if (= 3 x) (display "test")) (for-each display mylist)
example (coffeescript)
if 3 is x console.log "test" list.forEach (a) -> console.log a
benefit: code written by different authors looks more uniform, as there are fewer structural elements, such as spaces or brackets, that can be freely positioned.
+ 1 2 3 4
1 + 2 + 3 + 4
1 2 3 4 +
draft
coffeescript and wisp highlight interesting differences in how whitespace, indentation, and additional structural characters can be used differently.
in the examples below, a coffeescript-style syntax uses commas in infix notation to show argument continuation. fn represents functions.
single-line function call
f a b c
continued argument list
f a b . c d . e f
nested multiline function calls
f a f2 b c f3 d e
more deeply nested multiline function calls
f a f2 b f3 c d . f4 e f
the space acts to mark application position
f a, b, c
the newline is allowed to act as a comma in this case.
f a, b c, d e, f
f a, f2 b, c f3 d, e
f a f2 b, f3( c, d ) (e - f)
a similar situation as with commas arises with associations.
wisp/scheme can handle associations contextually by the syntax of "let", the colon is merely used to open another same-line nesting. coffeescript uses the colon as an association-character
let : x a y b z c display x let x: a y: b z: c, display x