Interpreted and compiled languages
Interpreted and compiled languages
Posted Nov 18, 2009 8:47 UTC (Wed) by mjthayer (guest, #39183)In reply to: Language wars by keithp
Parent article: The notmuch mail client
This is probably a really silly thought, but more often than not, Python code is compiled (into pycode, but still compiled). Sometimes on the fly, usually in advance for distributed packages. I can picture Python scripts containing additional type information for variables, perhaps as specially formatted comments or docstrings, and the compiler printing warnings at compile time, lint-style, when something looked fishy - perhaps not for on-the-fly compiles, but only for advance compiles, or then again perhaps for all.
I don't know if Python has any other special issues (apart from the white space thing and the global namespace).
Posted Nov 22, 2009 23:56 UTC (Sun)
by rwmj (subscriber, #5474)
[Link]
Look at a real, static, compiled language with type inference. The current leaders in this area are all
Rich.
Interpreted and compiled languages
functional languages. FWIW I started writing something similar to notmuch/sup in OCaml (a few
months ago, and without knowing about sup -- I'll probably abandon it for something better
supported now like notmuch).