This page (revision-6) was last changed on 03-Feb-2023 15:21 by Carsten Strotmann 

This page was created on 29-Jul-2010 13:51 by Carsten Strotmann

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
6 03-Feb-2023 15:21 281 bytes Carsten Strotmann to previous removed reference to ACTION!, as this FALSE is part of the volksForth glossary
5 20-Aug-2010 09:59 813 bytes Gromit to previous | to last
4 20-Aug-2010 09:59 813 bytes Gromit to previous | to last
3 20-Aug-2010 09:58 811 bytes Gromit to previous | to last
2 20-Aug-2010 09:58 792 bytes Gromit to previous | to last
1 29-Jul-2010 13:51 281 bytes Carsten Strotmann to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 removed 6 lines
[{TableOfContents }]
\\see also [true]
----
!Forth
At line 24 removed 36 lines
----
!Action
__false__ =0
Example:
%%prettify
{{{
BYTE FUNC values_match(BYTE x,y)
BYTE rval
rval=0 ;means FALSE
IF x=10 AND y=20 THEN
rval=1 ;means TRUE
FI
RETURN(rval)
PROC main()
BYTE v1,
v2
PrintE("Please give me 2 numbers.")
Print("v1 = ")
v1=InputB()
Print("v2 = ")
v2=InputB()
IF values_match(v1,v2) THEN
PrintE("Your values match!!")
FI
RETURN
}}}
/%