vote up 0 vote down star

If a language contained only syntax that is completely essential to being able to program, what would it look like? What functions would allow the programmer to build whatever they need, without filling the language?

flag

closed as not a real question by Preet Sangha, silky, Suma, Shoban, Galwegian Sep 30 at 10:33

4 Answers

vote up 5 vote down check

The language has to minimally be Turing-complete. If not certain things won't be able to be programmed.

A great example of a language which is very small (possibly as small as it gets?), yet Turing-complete: brainfuck.

link|flag
vote up 3 vote down

Compute NAND of two arguments; any other logic can be built on this ;-)

link|flag
2  
... or NOR. Both NAND and NOR are universal in this way. – Jonathan Tran Sep 30 at 13:51
vote up 1 vote down

Support recursion.

link|flag
2  
Agreed, but right before this, you must implement recursion. – silky Sep 30 at 10:14
I think silky is referring to the [Y combinator](en.wikipedia.org/wiki/Y_combinator). You can implement recursion without recursion being primitive. – Jonathan Tran Sep 30 at 13:55
vote up 1 vote down

It should provide I/O in some format that is observable by humans.

link|flag
Glad to see at least someone's looking at this from a practical perspective. – dsimcha Oct 2 at 12:20

Not the answer you're looking for? Browse other questions tagged or ask your own question.