Tagged Questions
The metalanguage tag has no wiki summary.
3
votes
2answers
159 views
Metalanguage to define workflow of HTML application
I'm searching for an way to language independently express the workflow of an HTML application. If a user fills in certain values in a form, another form should be displayed.
Further if values are ...
3
votes
3answers
376 views
Best way to implement a meta language compiling down to PHP
I've been working on the specifikation / kitchensink for a meta language that can compile down to PHP for some time now. Now I want to begin building the thing. Before I have implemented tiny DSL's ...
2
votes
3answers
137 views
Metalanaguage to describe the Model from MVC to generate identical client and server side code
I am looking for a powerful meta-language to describa behaviour for an application i intend to use in offline mode (google-gears + javascript) and server side sqlite + (php/ruby/java etc) and looking ...
1
vote
2answers
86 views
@result_list = grep { test($_) } @unfiltered_list in other languages?
One of the features I love in Perl is the LISP-inspired (?) ability to filter content out of a list of things with the simple syntax
@result_list = grep { test($_) } @unfiltered_list;
where test ...
1
vote
1answer
177 views
Strategies for sharing common business logic across different programming languages
Having a monolithic business application with complex business logic implemented in Visual Dataflex, we are facing the challenge of maintaining our business logic across programming languages as ...