Oz (programming language): Difference between revisions

Content deleted Content added
m Execution speed: link to language shootout
Dataflow variables and declarative concurrency: fix indentation (should be easier to understand; same formatting as Map example above)
Line 164:
 
fun {Sum S Stream}
case Stream
of nil then S
[] H|T then S|{Sum H+S T}
end
end