FORTH is a dynamic, procedural, stack based programming language developed by Charles Moore.
2
votes
0answers
40 views
Forth as an interactive C program tester
I'm willing to use an interactive language to test some C code from a legacy project. I know a little Forth, but I haven't ever used it in a real world project. I'm looking at pForth right now.
Is it ...
2
votes
1answer
87 views
Algorithmic Complexity Analysis: practically using Knuth's Ordinary Operations (oops) and Memory Operations (mems) method
In implementing most algorithms (sort, search, graph traversal, etc.), there is frequently a trade-off that can be made in reducing memory accesses at the cost of additional ordinary operations.
...
1
vote
1answer
30 views
Problems compiling Gforth on Mac
I downloaded Gforth 0.7.0 from the official website, placing the folder in /Applications and put its alias in /usr/local/bin.
After compiling using:
$ sudo -s
$ ./configure
$ make
When making, it ...
7
votes
2answers
113 views
How to define VALUE and TO
Simple I want the forth words VALUE and TO on a rpc/8 (an emulated computer in a minecraft mod). My best attempts get me a set of words that work fine so long as I don't use them while compiling. More ...
1
vote
1answer
64 views
Custom interpreter
I'm trying to write an interpreter in Gforth, but it doesn't work. All I get is an infinite list of num num num num ...
: ?refill
source nip >in @ =
if
refill drop
then
;
: inter
...
1
vote
2answers
85 views
Accepting user input for a variable
So, this should be an easy question for anyone who has used FORTH before, but I am a newbie trying to learn how to code this language (and this is a lot different than C++).
Anyways, I'm just trying ...
2
votes
1answer
238 views
Forth syntax highlighting for Sublime Text 2?
I've been looking around and haven't found a syntax definition for Gforth to use in Sublime Text.
Is there one? I have found one for TextPad, but that's about it (see TextPad syntax definitions). Is ...
1
vote
1answer
90 views
Checking for primality in Forth
How can I check for primality in Forth?
Here is what I use now, but it gets slow with higher numbers:
: prime ( n - f )
DUP 2 < IF
DROP 0 EXIT
THEN
DUP 2 ?DO
DUP I I * < IF
...
10
votes
5answers
520 views
Examples of very concise Forth applications? [closed]
In this talk, Chuck Moore (the creator of Forth) makes some very bold, sweeping claims, such as:
"Every application that I have seen that I didn't code has ten times as much code in it as it needs"
...
1
vote
1answer
69 views
How do I access the program name / argv[0] in Forth?
The Gforth documentation say to access arguments by calling next-arg, but this omits the program name, which would be printed in a C-like language.
Since argv[0] seems to be automatically removed ...
4
votes
1answer
118 views
What's the lifetime of S“ …” in Forth?
I've been trying to read up on this, but can't find any mention of it.
According to the standard a string created with S" can not be modified, and from a simple experiment in gforth it's obvious that ...
5
votes
1answer
267 views
Why does Forth use IF statement THEN … instead of ENDIF? [closed]
Why does Forth use IF statement THEN ... instead of ENDIF?
I'm implementing a (non-conforming) Forth compiler thing. Basically, Forth's syntax appears very counter-intuitive to me regarding IF ...
1
vote
1answer
99 views
How do I read something from stdin in gforth and store it in a variable?
I've tried the following code after reading the docs:
create buff 128 allot
buff 128 stdin read-line throw
I was hoping that this would get me a char for each successive address of buff, but ...
1
vote
2answers
215 views
How would one code an application in Forth (or Factor)?
I'm potentially interested in exploring a stack-based language like Forth (or Factor). What I'd like to see is how an application might be built from the ground up, step by step. The tutorials I've ...
5
votes
3answers
487 views
Memory management in Forth
So I'm just learning Forth and was curious if anyone could help me understand how memory management generally works. At the moment I only have (some) experience with the C stack-vs-heap paradigm.
...
0
votes
1answer
276 views
Convert 4GL code to Java Code
Is there an effective way to convert forth source code(4GL) into Java source code? I need to do so for a project I am working on. Thank you.
3
votes
1answer
188 views
How do I implement an array of strings?
I tried to implement a word that produces a string from an array when given a number on the stack in Forth.
My first naive attempt was:
create myarray s" Alpha", s" Beta", s" Charlie",
This was ...
3
votes
0answers
257 views
Is there any real on-device developing tools on Android?
I am recently became interested in on-device developing on Android, and have tried ASE, JRuby, and AndroidForth.
The ASE seems use a Java RPC server as the backend, and I got random errors when I am ...
0
votes
1answer
241 views
How does Dalvik VM get access to I/O?
I have recently become interested in the Dalvik VM. From Wikipedia and some slides I got know basic information about Dalvik VM. There's still things I don't know, and I can't find documents easily, ...
0
votes
1answer
81 views
gforthmi segmentation fault
I'm using Gforth 0.7.0 on Linux. Every time I try to run gforthmi, no matter what parameters I use, it chokes on segmentation fault like below:
[bahman@bleda ussa]$ gforthmi ussa.fi -m 4M ussa.fs
...
1
vote
2answers
128 views
Return stack operations generate “invalid memory address” in Gforth 0.7
I'm learning Forth here, and I've got onto return stack operations.
So using the console on Ubuntu 11.04 x64 I am trying to get the TOS onto the return stack but this happens:
1 2 3 4 5 ok
>r
...
9
votes
4answers
402 views
Is the Java virtual machine language agnostic?
Is it safe to say that the Java virtual machine was 'originally' designed for the Java programming language, but now, other developers have been able to write programming languages that compile to ...
-1
votes
1answer
799 views
Write a compiler from scratch in C [duplicate]
Possible Duplicate:
How to code a compiler in C?
How would I start writing a compiler from scratch (no Flex or Bison or Lex or Yacc) in C? I have a language that I wrote an interpreter for, ...
1
vote
4answers
930 views
How to implement LOOP in a FORTH-like language interpreter written in C
I'm writing a simple stack-based language in C and was wondering how I should go about implementing a loop structure of some kind, and/or lookahead symbols. Since the code is a bit long for this page ...
3
votes
2answers
369 views
How to divide two integers and get a result in float in Forth?
I am looking for a way to be able to translate between single precision and double precision.
One example would be to divide 2 integers and get a floating result. How is that possible?
3
votes
1answer
449 views
Forth language EBNF rule for an infinite loop or if statement
Is there an EBNF rule that describes a Forth infinite loop or if statement?
1
vote
1answer
540 views
Forth langauge EBNF rule for the while loop [duplicate]
Possible Duplicate:
Forth language EBNF rule for an infinite loop or if statement
Is there any EBNF rule that describes a Forth while loop (or any other loop)?
7
votes
4answers
945 views
Multicore Forth, is there one?
Does such a implementation of Forth exists that allows you to take full advantage of multicore processors?
3
votes
4answers
540 views
Programming languages implemented in assembly language
Recently I've stumbled upon JONESFORTH, which is an interpreter for the Forth programming language implemented in plain assembly language.
I find this implementation interesting, because it shows how ...
2
votes
2answers
304 views
Gforth parallel processing
I have written a Forth Mandelbrot fractal plotter, and as much as a technical exercise as anything else I would like to try to speed it up with some parallel processing.
For the time being I would be ...
3
votes
1answer
322 views
File Output using Gforth
As a first project I have been writing a short program to render the Mandelbrot fractal. I have got to the point of trying to output my results to a file ( e.g. .bmp or .ppm ) and got stuck.
I have ...
9
votes
3answers
786 views
Free Forth books [closed]
Are there any free Forth ebooks that teach advanced Forth programming techniques? I am aware of Thinking Forth and Programming Forth. Any books other than these?
11
votes
4answers
1k views
How do I design and implement a programming language?
This question is related to
This question on Aardvark
This question on here
The past couple of years I've been thinking about things I like and don't like about languages I use. I always wanted to ...
11
votes
12answers
802 views
What programming languages have the most easily-implemented interpreters?
I need to implement an interpreter for a programming language as part of a project I'm working on. I don't think the details of this project are too relevant, except that it requires me to implement ...
10
votes
1answer
369 views
7
votes
1answer
599 views
How does Forth implement the dictionary? (controversy)
I am studying Forth for a personal project I have on my mind. It looks to be a really cool and simple language to implement in a small virtual machine.
I am especially impressed by the possibilities ...
17
votes
4answers
1k views
Which Forth to start porting from?
I'm looking to develop a new Forth system, aimed at making game development easier on one or possibly several retro console platforms. I'm something of a Forth beginner, and need your help deciding ...
3
votes
9answers
2k views
Are Fortran, Cobol, Basic and Forth high level programming languages?
Are Fortran, Cobol, Basic and Forth high level programming languages?
And if not, what where the first high level programming languages?
Which were the first object-oriented languages?
11
votes
6answers
2k views
What implementation of Forth to use for learning Forth?
I want to start learning Forth (like in the related Stack Overflow question Is it practical to learn and use Forth?). I see that there are many implementations. I would like to use a
ANS 1994 ...
2
votes
1answer
494 views
Compiling Gforth without Gforth?
When I try to compile Gforth 0.7.0, I get the following error:
$ ./configure
$ make
#compiling…
Undefined symbols:
"_main", referenced from:
start in crt1.10.6.o
ld: symbol(s) not found
...
17
votes
7answers
2k views
Is Forth still in use? If so, how and where?
A long time ago I remember thinking that the Forth programming language was pretty cool. I really haven't heard anything about it in years. Is Forth still in use? If so, what types of applications is ...
2
votes
5answers
632 views
Will it be possible to run C code emulated on GA144?
This company have an interesting CPU that run at an amazing speed. Will it be possible to emulate C or is the memory too small?
7
votes
2answers
1k views
Square root function in Forth using x86 Assembly?
I don't know much about assembly, but I am pretty sure that there are square root instructions on the x86? I am trying to get a square root function to work well in froth and the one that I have found ...
12
votes
7answers
1k views
Real world usage of concatenative programming langauges
What are some real-world projects done in concatenative languages like Forth, Factor, Joy, etc.?
21
votes
7answers
3k views
Is it practical to learn and use Forth?
When I was still a young developer, I started to focus on the many available programming languages. But in 1980 to 1990 there weren't many freely available compilers. So I started with several BASIC ...
4
votes
4answers
2k views
Forth Interpreter in Java
Here I found a Simple Forth Interpreter implemented in Java.
However I don't understand the significance of it if I want to use it?
What could be the advantage of the Forth Interpreter:
If the ...
9
votes
1answer
956 views
Forth: free video tutorials?
Can you recommend any free Forth video tutorials
(except for following) ?
The only one I know of is Samuel A. Falvo's excellent
"Over The Shoulder Episode 1: Text Preprocessing in Forth".
MPEG. 102 ...
2
votes
5answers
950 views
Since everyone is coding Lisp and Erlang now, does that mean that we will see Forth coders in 2010? [closed]
I'm think I see more and more coders looking into Erlang and Lisp. Since I learned
it in exactly the same order, and now, I'm looking into Forth, does it mean that Forth is the next language on ...
22
votes
6answers
3k views
What are the primitive Forth operators?
I'm interested in implementing a Forth system, just so I can get some experience building a simple VM and runtime.
When starting in Forth, one typically learns about the stack and its operators ...
13
votes
8answers
2k views
For what applications is Forth best suited?
I am intrigued by stack-based languages like Forth. Are there situations where Forth is the best tool for the job or is it just an intellectual and historical curiosity? What about derivative ...

