File: TokExstCondNada_01.fth

package info (click to toggle)
fcode-utils 1.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 46,768 kB
  • sloc: ansic: 9,717; csh: 241; makefile: 129; sh: 17
file content (31 lines) | stat: -rw-r--r-- 934 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
\  What happens to "Exists" Conditionals test when the
\       target isn't on the same line?
\  Or the "Defined" Conditionals, for that matter
\  Preliminary test before FLoading Common code (insert obligatory sneeze here)

\  Updated Tue, 21 Feb 2006 at 15:33 PST by David L. Paktor


\  File that FLoads this must define a pair of macros or aliases
\      called  [yestest]  and  [notest]  respectively, that are
\      inverses of each other.

f[  false  ]f
[ifnexist] [yestest]
    [if]    [endif]    \   Until we have a better way to  drop  in tok-esc mode
    f[   true  ]f
[endif]

[ifnexist] [notest]
    [if]    [endif]    \   Until we have a better way to  drop  in tok-esc mode
    f[   true  ]f
[endif]
[#message] got this far
[if]
    [#message] \ Must define macros or aliases called  [yestest]  and  [notest]  respectively
[else]
[#message] are we here
    fload TokExstCondNada_02.fth
[#message] we are here
[endif]