NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
the unfamiliar (Score:1)
Don't you think a lot of that is probably frustration due to being unfamiliar with how things are done in this new environment?
It does look interesting at first glance, in any case. Thanks for the pointer.
Re: (Score:1)
Any language that forces you to use a particular editor needs to die a slow and painful death.
Re: (Score:2)
Perhaps the rest of the language is more interesting, but I don't see any of that here.
Re: (Score:1)
Perl isn't good at any of those. I don't know ofa nice thunking layer between Perl and Oz so maybe I'd want to just use Perl's glue-language capabilities to write Oz code and scrape the output as it came back.
I'm a rank Oz novice though.
Re: (Score:1)
AI::Prolog (Score:2)
As much as I hate to say it, I'm glad you didn't go with AI::Prolog. Scheduling problems (as with any search algorithm) are generally heavily recursive and AI::Prolog probably would have killed any hope you had of having a fast system.
Editor agnostic (Score:1)
A compile -> run command looks like this:
ozc -c program.oz && ozengine program.ozf
A compile -> debug command looks like this and it requires a GUI. The debugger mostly sucks though.
ozc -g -c program.oz && ozd program.ozf