0
comment
comment
on 9/9/2015 9:14 AM
Most programming languages were designed before the age of web.
This matters because the web changes many assumptions that typed functional
language designers tak for granted. For example, programs do not run in a
closed world, but must instead interact with (changing and likely unreliable)
services and data sources, communication is often asynchronous or event-driven,
and programs need to interoperate with untyped environments like JavaScript
libraries.
How can statically-typed programming languages [...]