Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Opinions on the Mozart/Oz programming language? [closed]

Tags:

oz

mozart

I realize that Oz is a fairly obscure language. I first heard about it in the Programming Language Shootout. Then I found this Wikipedia article, which states Mozart/Oz to support 8 different paradigms.

So I gave it a try. There were plenty of documentation, except that I found it very confusing and lacking. I couldn't find any books or other documentation, and few examples. Also, it seemed to be tightly integrated with Emacs, which I'm not very used to.

What are your opinions of this programming language: is it a complete waste of time? Or can someone point me towards some good resources, etc?

Also, I don't want to use Emacs. Do I have any other options like an interactive interpreter or a normal compile-run cycle?

like image 587
Lucky Avatar asked Jun 21 '09 23:06

Lucky


4 Answers

This is the book on Oz: Concepts, Techniques, and Models of Computer Programming

However, this book goes well beyond teaching a language. Some people consider in "the next bible" on languages, after the SICP.

like image 107
Igor Krivokon Avatar answered Nov 03 '22 20:11

Igor Krivokon


Learning Mozart/Oz was probably the most valued programming experiences I got out university. But at the same time it was also the crappiest since you can't really use it in real world. (I even think they removed Oz from the courses because of this and replaced it with a mix of C++, Java and Erlang.)

So for academic purposes it is a great language to experiment with in order to learn new techniques and become a "better" developer.

But since the nice thing with development is that even though you won't run your production code on a Mozart system you could still steal a lot of good ideas from it and implement in your favorite language of choice. Just have a look at Jonas Bonér work on implementing dataflow variables in scala (or Ozma).

As for additional resources, do a google search on 2G1512 and look for tutorial, laborations and lectures in pdf format.

like image 25
Ola Herrdahl Avatar answered Nov 03 '22 21:11

Ola Herrdahl


Mozart/Oz to support eight different paradigms

Here's a short overview paper which should give you some context for that - Programming Paradigms for Dummies: What Every Programmer Should Know (pdf)

What are your opinions of this programming language

Mozart/Oz gives you the opportunity to explore and learn and play with a very wide range of programming language techniques.

Also I don't want to use Emacs; Do I have any other options like an interactive interpreter or a normal compile-run cycle?

They use Emacs like an interactive interpreter.

Yes you can write code in a text editor and compile & run from the command line.

like image 11
igouy Avatar answered Nov 03 '22 21:11

igouy


According to the thread Mozart/Oz speed - Ruby 1.9 speed, it is much faster than Ruby 1.9 which is "actively" improved.

like image 6
Valentin Avatar answered Nov 03 '22 21:11

Valentin