Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

There's an important distinction though between being able to write a compiling (or even functional) program and being able to write a program that serves a particular purpose.


sort by: page size:

Writing compilers definitely is.

Sometimes you need to write a compiler.

I guess he referred to using a compiler, not writing one. The later is obviously one of the more advanced topics in computer science.

Compiler writing isn't the easiest thing in the world by any stretch, but it's something that we manage to achieve all the time, unlike the mythical "program to do my programming" we are so quick to imagine.

Yes but you’re not the one doing it, the compiler is.

The *point* of a compiler is to compile itself.

Before compilers, programmers spent a lot of time writing assembly language, but that doesn't mean a compiler is doing the job of a programmer.

Some things are irreducibly difficult. Writing a compiler isn't one of them.

Writing a compiler is another one of those things that is a lot easier than people assume it is. Far easier.

And the significance being, this compiler can handle code complex enough to create a compiler.

Sure, that makes sense, but you can write a compiler in languages that don't require it themselves. That's what I meant.

The same distinction still holds in programming - it's just that the process of using the plan to generate the final product has been automated, by that handy class of tools we call "compilers".

Not necessarily. Sometimes compilers give better programs than a programmer can with optimization and stuff.

It's not that hard if you have experience in writing compilers.

The implication here being that writing an interpreter is easier? I've found it easier to write a compiler.

It's not that significant. We can tell what the vast majority existing software will do in an automated way. Compiling a program is the equivalent of encoding it's semantics in another language which implies knowing what it will do - at least that's one way of 'knowing what it will do'.

every program is a compiler

> Is the reader's brain like a compiler? No. Compilers are very literal. Readers' brains build an imagined world from the hints given by the author.

Code is mainly to be read by a person. Otherwise there is no reason to keep a copy of the source file after it's been compiled into binary/executable form.

The main difference you pointed out is that for code to be functional it has an additional requirement of having to comply with rigid rules of the programming language, but the "reader" is still human.


Right - a compiler. That's a real-world application isn't it? A compiler can be a pure function - accepting source text as input, and producing machine code as output. Yes more complicated languages do more complicated things, but for several languages you could write a state-of-the-art compiler as a pure function.
next

Legal | privacy