Tagged Questions

0
votes
0answers
5 views

Good information about type systems based on contracts/constraints?

Hello! Problem: I am looking for good introduction about type systems, which are based on contracts/constraints (sorry, I don't remember which term one is appropriate for a type …
10
votes
6answers
231 views

what exactly is a “register machine” ?

From http://code.google.com/p/unladen-swallow/wiki/ProjectPlan I quote: "Using a JIT will also allow us to move Python from a stack-based machine to a register machine, which has …
5
votes
9answers
275 views

What is the best book for Programming Language Theory?

What is a good book that covers the topics of grammars (context-free and context-sensitive) and their notations (EBNF, BNF, etc), syntax, type and programming language theory, etc? …
3
votes
3answers
155 views

Besides Logo and Emacs Lisp, what are other pure dynamically scoped languages?

What are some examples of a dynamically scoped language? And what are the reasons for choosing that design? Is it because it is easy to implement?
3
votes
2answers
88 views

Best computer languages book [closed]

Possible Duplicates: Learning to write a compiler What book or books should every programmer own? What is the best book for Programming Language Theory? Hi folks! This …
7
votes
7answers
557 views

often used seldom defined terms: lvalue

What is an lvalue?
1
vote
3answers
173 views

How do I design the transition functions for this pushdown automaton?

I'm studying for a test on PDA, and I want to know how to design a pushdown automaton that recognizes the following language: L = {a^max(0,n-m)b^n a^m| n,m >=0} How can I des …
4
votes
11answers
325 views

Is computing theory useful for programmers? [closed]

Can learning subjects such as abstract machines and formal languages make you a better programmer?
1
vote
0answers
29 views

Textual Protocol which is not a regular language ?

Hi, The usual way to represent way the grammar associated with a textual network protocol is using ABNF. Just like any EBNF-related meta-syntax, ABNF enables to describe context- …
10
votes
7answers
1k views

What is the exact problem with multiple inheritance?

I can see people asking all the time whether multiple inheritance should be included into the next version of C# or Java and C++ folks, who are fortunate enough to have this abilit …
0
votes
2answers
187 views

Language Evaluation question: Eager Vs. Lazy

I was reading Shriram's PLAI and this I got stuck in these questions: Can you prove that the eager and lazy regimes will always produce the same answer? (Shriram asks to look at …
14
votes
4answers
488 views

The while language

For my theory of computing languages class, we got a homework assignment to implement a piece of code in a language that only has while statements for flow control (no if statement …
7
votes
15answers
868 views

Learning Resources on Parsers, Interpreters, and Compilers

I've been wanting to play around with writing my own language for a while now (ostensibly for the learning experience) and as such need to be relatively grounded in the constructio …
0
votes
6answers
158 views

What is the advantage of having this/self pointer mandatory explicit?

What is the advantage of having this/self/me pointer mandatory explicit? According to OOP theory a method is supposed to operate mainly (only?) on member variables and method's ar …
5
votes
9answers
397 views

Can a language be turing complete but incomplete in other ways?

For example, are there certain things when writing an operating system that cannot be accomplished in a turing complete language?

1 2 next
15 30 50 per page