ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
ExampleDescriptionSymbolDescription
2
word!store; source on stack. dest either on stack or impliedcchar (8-bits)
3
!wordstore; source not on stackddouble
4
word@fetch; returns item on stack. source either on stack or impliedffloat
5
datatype@
fetch; source address on stack; datatype can be for example F for "float"
hhalf (16-bits)
6
word+!plus-store; add to dest on stack or impliedmcell+double op
7
+wordincrement or pushpfixed point
8
word+add something to item on stackrreturn stack
9
uunsigned
10
-worddelete somethingvvector
11
word-subtract or undo somethingxx coordinate
12
/wordinitialize something. rarely, the size of something (deprecated)yy coordinate
13
word/tear down somethingzz coordinate
14
#wordscount of something|used in stack diagrams to denote conditional effects
15
word#integer
16
word$string
17
%wordstruct
18
*wordcreate something
19
word*multiply
20
word>pop, or DOES>-style code body
21
>wordpush, or convert
22
[word]compiler directive
23
[word word]start/end data definition, or some state
24
:worddefine something
25
word:create something (parameters on stack)
26
'wordXT or address of code
27
word,compile
28
.wordprint
29
?wordconditionally do something; may take parameters or not
30
word?returns a flag
31
<word>denotes string in input stream
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100