Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
6answers
913 views

Explain Concatenative languages to me like I'm an 8 year old

I've read the wikipedia article on concatenative languages and I am now more confused than I was when I started. :-) Can someone explain what a concatenative language is in stupid people terms?
10
votes
7answers
829 views

Real world usage of concatenative programming langauges

What are some real-world projects done in concatenative languages like Forth, Factor, Joy, etc.?
8
votes
2answers
855 views

Role of Combinators in Concatenative/Tacit Programming Languages

I have a question about what exact role do higher-order combinators (or function producers) hold in concatenative/tacit programming. Additionally I would like to ask if there is another way to ...
6
votes
1answer
135 views

Row polymorphism in Haskell: trouble writing Forth DSL with “transformations”

I've been inspired by the recent Haskell blog activity1 to try my hand at writing a Forth-like DSL in Haskell. The approach I have taken is simultaneously straightforward and confusing: {-# LANGUAGE ...
3
votes
2answers
380 views

Lisp influence on on Factor programming language?

I have read (from Slava Pestov) that Factor was influenced by Lisp, but I am not sure that I can understand how? Are they not very difference programming languages?
2
votes
0answers
18 views

callstack? retainstack? namestack?

This page of the Factor manual talks about these types of stacks stored in continuations: datastack retainstack callstack namestack catchstack What precisely do these stacks hold? The three most ...
2
votes
0answers
52 views

Could an Applicative Language use Postfix Notation?

I've always found postfix languages like Factor to be far more readable than prefix (Lispy languages) and infix/postfix languages (all C-style languages, if we include both operators and functions). ...
1
vote
2answers
172 views

Concatenative language inrepreter in Java

I'm interested in finding a concatenative language interpreter in Java. Ideally, it should satisfy the following conditions: It has an interpreter, not (only) a bytecode compiler for JVM. The ...