Arc Forumnew | comments | leaders | submitlogin
History of T (paulgraham.com)
7 points by jmatt 5751 days ago | 4 comments


3 points by almkglor 5751 days ago | link

Interesting. So apparently dataflow analysis is hard. Hmm.

Ah well; never mind that, first I gotta implement blocking I/O in a green-threaded environment.

-----

3 points by antiismist 5750 days ago | link

"In short, the fundamental item the classical data-flow analysis algorithms need to operate is not available in a Scheme program."

Anyone know what the problem was/is?

-----

5 points by stefano 5749 days ago | link

Suppose you write from the repl:

  (def car (x) (my-bizzare-computation))
Now you would expect every function that references car to use your new version. If you can't trust basic functions such as car, data-flow analysis becomes very hard. I'm not an expert and I have only a vague idea of what data-flow analysis is, but I think this could be the problem. This is only what I think, so I could be completely wrong.

-----

1 point by jmatt 5750 days ago | link

Has arc created any disses yet? )

-----