clips-sys 0.4.0

Bindgen generated wrapper for CLIPS (clipsrules.net)
Documentation
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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
TRUE
CLIPS> (load "templerr.clp")
%
[CSTRNPSR1] templerr.clp, Line 29: The 'type' attribute conflicts with the 'range' attribute.

ERROR:
(deftemplate MAIN::bad-foo01
   (field x (type SYMBOL) (range 1 3))
%
[CSTRNPSR1] templerr.clp, Line 30: The 'type' attribute conflicts with the 'range' attribute.

ERROR:
(deftemplate MAIN::bad-foo02
   (field x (range 1 3) (type SYMBOL))
%
[CSTRNPSR1] templerr.clp, Line 31: The 'type' attribute conflicts with the 'range' attribute.

ERROR:
(deftemplate MAIN::bad-foo03
   (field x (type INTEGER) (range 1.0 3))
%
[CSTRNPSR1] templerr.clp, Line 32: The 'type' attribute conflicts with the 'range' attribute.

ERROR:
(deftemplate MAIN::bad-foo04
   (field x (range 1 3.0) (type FLOAT))
%%%%%
[CSTRNPSR3] templerr.clp, Line 43: The 'allowed-integers' attribute cannot be used in conjunction with the 'range' attribute.

ERROR:
(deftemplate MAIN::bad-foo05
   (field x (range 1 3.0) (allowed-integers
%
[CSTRNPSR3] templerr.clp, Line 44: The 'allowed-floats' attribute cannot be used in conjunction with the 'range' attribute.

ERROR:
(deftemplate MAIN::bad-foo06
   (field x (range 1 3) (allowed-floats
%
[CSTRNPSR3] templerr.clp, Line 45: The 'range' attribute cannot be used in conjunction with the 'allowed-integers' attribute.

ERROR:
(deftemplate MAIN::bad-foo07
   (field x (allowed-integers 4 5 6) (range
%
[CSTRNPSR3] templerr.clp, Line 46: The 'range' attribute cannot be used in conjunction with the 'allowed-numbers' attribute.

ERROR:
(deftemplate MAIN::bad-foo08
   (field x (allowed-numbers 4.1 5) (range
%%
[CSTRNPSR1] templerr.clp, Line 54: The 'type' attribute conflicts with the 'allowed-floats/numbers' attribute.

ERROR:
(deftemplate MAIN::bad-foo09
   (field x (type INTEGER) (allowed-floats 1.0 2.0))
%
[CSTRNPSR1] templerr.clp, Line 55: The 'type' attribute conflicts with the 'allowed-integers/numbers' attribute.

ERROR:
(deftemplate MAIN::bad-foo10
   (field x (type FLOAT) (allowed-integers 1 2))
%
[CSTRNPSR1] templerr.clp, Line 56: The 'type' attribute conflicts with the 'allowed-floats/numbers' attribute.

ERROR:
(deftemplate MAIN::bad-foo11
   (field x (allowed-floats 1.0 2.0) (type INTEGER))
%
[CSTRNPSR1] templerr.clp, Line 57: The 'type' attribute conflicts with the 'allowed-integers/numbers' attribute.

ERROR:
(deftemplate MAIN::bad-foo12
   (field x (allowed-integers 1 2) (type FLOAT))
%
[CSTRNPSR1] templerr.clp, Line 58: The 'type' attribute conflicts with the 'allowed-strings' attribute.

ERROR:
(deftemplate MAIN::bad-foo13
   (field x (allowed-strings "a" "b") (type SYMBOL))
%
[CSTRNPSR1] templerr.clp, Line 59: The 'type' attribute conflicts with the 'allowed-symbols' attribute.

ERROR:
(deftemplate MAIN::bad-foo13
   (field x (allowed-symbols a b) (type STRING))
%
[CSTRNPSR1] templerr.clp, Line 60: The 'type' attribute conflicts with the 'allowed-integers/numbers' attribute.

ERROR:
(deftemplate MAIN::bad-foo12
   (field x (allowed-integers 1 2) (type SYMBOL))
%%%%%
[CSTRNCHK1] templerr.clp, Line 79: An expression found in the default attribute does not match the allowed types for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo13
   (field x (type INTEGER) (default 1.0))
%
[CSTRNCHK1] templerr.clp, Line 80: An expression found in the default attribute does not match the allowed types for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo14
   (field x (type FLOAT) (default 1))
%
[CSTRNCHK1] templerr.clp, Line 81: An expression found in the default attribute does not match the allowed types for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo15
   (field x (type NUMBER) (default a))
%
[CSTRNCHK1] templerr.clp, Line 82: An expression found in the default attribute does not fall in the allowed range 1 to 3 for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo16
   (field x (range 1 3) (default 5))
%
[CSTRNCHK1] templerr.clp, Line 83: An expression found in the default attribute does not match the allowed values for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo17
   (field x (allowed-integers 2 3 4) (default 1))
%
[CSTRNCHK1] templerr.clp, Line 84: An expression found in the default attribute does not match the allowed types for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo18
   (field x (default 1.0) (type INTEGER))
%
[CSTRNCHK1] templerr.clp, Line 85: An expression found in the default attribute does not match the allowed types for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo19
   (field x (default 5) (type SYMBOL))
%
[CSTRNCHK1] templerr.clp, Line 86: An expression found in the default attribute does not fall in the allowed range 10.0 to 30 for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo20
   (field x (default 5.0) (range 10.0 30))
%
[CSTRNCHK1] templerr.clp, Line 87: An expression found in the default attribute does not match the allowed values for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo21
   (field x (allowed-strings "a" "b") (default "c"))
%
[CSTRNCHK1] templerr.clp, Line 88: An expression found in the default attribute does not match the allowed types for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo22
   (multifield x (default 3 4 a) (type INTEGER))
%
[CSTRNCHK1] templerr.clp, Line 89: An expression found in the default attribute does not fall in the allowed range 10.0 to 30.0 for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo23
   (multifield x (default 10.0 5.0) (range 10.0 30.0))
%
[CSTRNCHK1] templerr.clp, Line 90: An expression found in the default attribute does not match the allowed values for slot 'x'.

ERROR:
(deftemplate MAIN::bad-foo24
   (multifield x (allowed-strings "a" "b") (default "a" "b" "c"))
%%%%%%%%%%%%%
[PRNTUTIL5] templerr.clp, Line 110: The slot 'x' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo25
   (field x (type INTEGER))
   (field x
%
[PRNTUTIL5] templerr.clp, Line 111: The slot 'x' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo26
   (multifield x (type INTEGER))
   (field x
%
[PRNTUTIL5] templerr.clp, Line 112: The slot 'x' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo27
   (field x (type INTEGER))
   (multifield x
%
[PRNTUTIL5] templerr.clp, Line 113: The slot 'x' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo28
   (multifield x (type INTEGER))
   (multifield x
%
[PRNTUTIL5] templerr.clp, Line 114: The slot 'x' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo29
   (field x)
   (field y)
   (field x
%
[PRNTUTIL5] templerr.clp, Line 115: The slot 'x' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo30
   (field x)
   (field y)
   (field x
%
[PRNTUTIL5] templerr.clp, Line 116: The slot 'x' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo31
   (multifield x)
   (field y)
   (field x
%
[PRNTUTIL5] templerr.clp, Line 117: The slot 'x' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo32
   (field x)
   (multifield y)
   (field x
%%%%%
[PRNTUTIL5] templerr.clp, Line 132: The attribute 'type' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo37
   (field x (type INTEGER) (range 1 2) (type
%
[PRNTUTIL5] templerr.clp, Line 133: The attribute 'range' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo38
   (multifield x (range 0 3) (range
%
[PRNTUTIL5] templerr.clp, Line 137: The default attribute has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo39
   (field x (range 1 10) (default 3) (type INTEGER) (default
%
[PRNTUTIL5] templerr.clp, Line 141: The default attribute has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo40
   (multifield x (type SYMBOL) (default a b) (allowed-values a b c x y z) (default
%
[CSTRNPSR3] templerr.clp, Line 144: The 'allowed-floats' attribute cannot be used in conjunction with the 'allowed-number' attribute.

ERROR:
(deftemplate MAIN::bad-foo41
   (field x (allowed-numbers 1 3.5 10 20.7) (type NUMBER) (allowed-floats
%
[CSTRNPSR3] templerr.clp, Line 148: The 'allowed-numbers' attribute cannot be used in conjunction with the 'allowed-integers' attribute.

ERROR:
(deftemplate MAIN::bad-foo42
   (multifield x (allowed-integers 1 10) (allowed-numbers
%
[CSTRNPSR3] templerr.clp, Line 155: The 'allowed-numbers' attribute cannot be used in conjunction with the 'allowed-floats' attribute.

ERROR:
(deftemplate MAIN::bad-foo43
   (multifield x (allowed-floats 3.5 20.7) (default ?NONE) (allowed-integers 1 10) (allowed-numbers
%
[PRNTUTIL5] templerr.clp, Line 159: The attribute 'allowed-symbols' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo44
   (field x (allowed-symbols a b c) (type SYMBOL) (allowed-symbols
%
[PRNTUTIL5] templerr.clp, Line 162: The attribute 'allowed-integers' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo45
   (field x (type INTEGER) (allowed-integers 1 2 3) (allowed-integers
%
[PRNTUTIL5] templerr.clp, Line 164: The attribute 'allowed-floats' has already been parsed.

ERROR:
(deftemplate MAIN::bad-foo46
   (field x (allowed-floats 1.0 2.0 3.0) (allowed-floats
%
[CSTRNPSR3] templerr.clp, Line 167: The 'allowed-values' attribute cannot be used in conjunction with the 'allowed-integers' attribute.

ERROR:
(deftemplate MAIN::bad-foo47
   (field x (allowed-integers 4 5 6) (allowed-values
%
[CSTRNPSR3] templerr.clp, Line 169: The 'allowed-floats' attribute cannot be used in conjunction with the 'allowed-values' attribute.

ERROR:
(deftemplate MAIN::bad-foo48
   (multifield x (allowed-values 1.0 2.0 3.0) (allowed-floats
%
[CSTRNPSR3] templerr.clp, Line 171: The 'allowed-values' attribute cannot be used in conjunction with the 'allowed-symbols' attribute.

ERROR:
(deftemplate MAIN::bad-foo49
   (field x (allowed-symbols d e f) (allowed-values
%
[CSTRNPSR3] templerr.clp, Line 173: The 'allowed-strings' attribute cannot be used in conjunction with the 'allowed-values' attribute.

ERROR:
(deftemplate MAIN::bad-foo50
   (multifield x (allowed-values "a" "b") (allowed-strings
%
[CSTRNPSR4] templerr.clp, Line 179: Value does not match the expected type for the 'allowed-symbols' attribute.

ERROR:
(deftemplate MAIN::bad-foo51
   (field x (allowed-symbols d 1.0 
%
[CSTRNPSR4] templerr.clp, Line 180: Value does not match the expected type for the 'allowed-integers' attribute.

ERROR:
(deftemplate MAIN::bad-foo52
   (multifield x (allowed-integers 1 2.0 
%
[CSTRNPSR4] templerr.clp, Line 181: Value does not match the expected type for the 'allowed-floats' attribute.

ERROR:
(deftemplate MAIN::bad-foo53
   (field x (allowed-floats 1.0 2.0 3 
%
[CSTRNPSR4] templerr.clp, Line 182: Value does not match the expected type for the 'allowed-strings' attribute.

ERROR:
(deftemplate MAIN::bad-foo54
   (multifield x (allowed-strings "a" "b" c 
%
[CSTRNPSR4] templerr.clp, Line 183: Value does not match the expected type for the 'allowed-numbers' attribute.

ERROR:
(deftemplate MAIN::bad-foo55
   (multifield x (allowed-numbers 1 2.0 3 x 
%
[PRNTUTIL2] templerr.clp, Line 184: Syntax Error:  Check appropriate syntax for allowed-symbols attribute.

ERROR:
(deftemplate MAIN::bad-foo56
   (field x (allowed-symbols d e f ?VARIABLE 
%
[PRNTUTIL2] templerr.clp, Line 185: Syntax Error:  Check appropriate syntax for allowed-integers attribute.

ERROR:
(deftemplate MAIN::bad-foo57
   (multifield x (allowed-integers ?VARIABLE 1 
%
[PRNTUTIL2] templerr.clp, Line 186: Syntax Error:  Check appropriate syntax for allowed-floats attribute.

ERROR:
(deftemplate MAIN::bad-foo58
   (field x (allowed-floats 1.0 ?VARIABLE 
%
[PRNTUTIL2] templerr.clp, Line 187: Syntax Error:  Check appropriate syntax for allowed-strings attribute.

ERROR:
(deftemplate MAIN::bad-foo59
   (multifield x (allowed-strings ?VARIABLE "a" 
%
[PRNTUTIL2] templerr.clp, Line 188: Syntax Error:  Check appropriate syntax for allowed-numbers attribute.

ERROR:
(deftemplate MAIN::bad-foo60
   (multifield x (allowed-numbers 1 2.0 3 ?VARIABLE 
%
[PRNTUTIL2] templerr.clp, Line 189: Syntax Error:  Check appropriate syntax for allowed-integers attribute.

ERROR:
(deftemplate MAIN::bad-foo61
   (multifield x (allowed-integers ?NONE 
%
[PRNTUTIL2] templerr.clp, Line 190: Syntax Error:  Check appropriate syntax for allowed-symbols attribute.

ERROR:
(deftemplate MAIN::bad-foo62
   (field x (allowed-symbols d e f ?NONE 
%
[PRNTUTIL2] templerr.clp, Line 191: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo63
   (field x (type ?VARIABLE FLOAT 
%
[PRNTUTIL2] templerr.clp, Line 192: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo64
   (multifield x (type FLOAT ?VARIABLE 
%
[PRNTUTIL2] templerr.clp, Line 193: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo65
   (field x (type FLOAT NUMBER 
%
[PRNTUTIL2] templerr.clp, Line 194: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo66
   (multifield x (type NUMBER INTEGER 
%
[PRNTUTIL2] templerr.clp, Line 195: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo67
   (field x (type ?NONE 
%
[PRNTUTIL2] templerr.clp, Line 196: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo68
   (multifield x (type FLOAT ?NONE 
%
[PRNTUTIL2] templerr.clp, Line 197: Syntax Error:  Check appropriate syntax for default attribute.

ERROR:
(deftemplate MAIN::bad-foo69
   (field x (default ?NONE x
%
[PRNTUTIL2] templerr.clp, Line 198: Syntax Error:  Check appropriate syntax for default attribute.

ERROR:
(deftemplate MAIN::bad-foo70
   (multifield x (default x ?NONE
%
[PRNTUTIL2] templerr.clp, Line 199: Syntax Error:  Check appropriate syntax for default attribute.

ERROR:
(deftemplate MAIN::bad-foo71
   (field x (default ?VARIABLE
%
[PRNTUTIL2] templerr.clp, Line 200: Syntax Error:  Check appropriate syntax for default attribute.

ERROR:
(deftemplate MAIN::bad-foo72
   (multifield x (default x ?VARIABLE
%
[PRNTUTIL2] templerr.clp, Line 201: Syntax Error:  Check appropriate syntax for range attribute.

ERROR:
(deftemplate MAIN::bad-foo73
   (field x (range 1 a
%
[PRNTUTIL2] templerr.clp, Line 202: Syntax Error:  Check appropriate syntax for range attribute.

ERROR:
(deftemplate MAIN::bad-foo74
   (multifield x (range a
%
[PRNTUTIL2] templerr.clp, Line 203: Syntax Error:  Check appropriate syntax for range attribute.

ERROR:
(deftemplate MAIN::bad-foo75
   (field x (range 1 )
%
[PRNTUTIL2] templerr.clp, Line 204: Syntax Error:  Check appropriate syntax for range attribute.

ERROR:
(deftemplate MAIN::bad-foo76
   (field x (range a
%
[PRNTUTIL2] templerr.clp, Line 205: Syntax Error:  Check appropriate syntax for range attribute.

ERROR:
(deftemplate MAIN::bad-foo77
   (multifield x (range 1 ?NONE
%
[PRNTUTIL2] templerr.clp, Line 206: Syntax Error:  Check appropriate syntax for range attribute.

ERROR:
(deftemplate MAIN::bad-foo78
   (field x (range ?NONE
%
[PRNTUTIL2] templerr.clp, Line 207: Syntax Error:  Check appropriate syntax for range attribute.

ERROR:
(deftemplate MAIN::bad-foo79
   (field x (range ?NONE
%
[CSTRNPSR2] templerr.clp, Line 208: Minimum 'range' value must be less than or equal to the maximum 'range' value.

ERROR:
(deftemplate MAIN::bad-foo80
   (multifield x (range 8 1)
%
[CSTRNPSR2] templerr.clp, Line 209: Minimum 'range' value must be less than or equal to the maximum 'range' value.

ERROR:
(deftemplate MAIN::bad-foo81
   (field x (range 8.0 1)
%
[CSTRNPSR2] templerr.clp, Line 210: Minimum 'range' value must be less than or equal to the maximum 'range' value.

ERROR:
(deftemplate MAIN::bad-foo82
   (multifield x (range 8.0 1.0)
%
[CSTRNPSR2] templerr.clp, Line 211: Minimum 'range' value must be less than or equal to the maximum 'range' value.

ERROR:
(deftemplate MAIN::bad-foo83
   (field x (range 8 1.0)
%
[PRNTUTIL2] templerr.clp, Line 212: Syntax Error:  Check appropriate syntax for range attribute.

ERROR:
(deftemplate MAIN::bad-foo84
   (multifield x (range ?VARIABLE )
%
[PRNTUTIL2] templerr.clp, Line 213: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo85
   (field x (type STRING SYMBOL STRING 
%
[PRNTUTIL2] templerr.clp, Line 214: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo86
   (multifield x (type SYMBOL SYMBOL 
%
[DEFAULT1] templerr.clp, Line 215: The default value for a single field slot must be a single field value.

ERROR:
(deftemplate MAIN::bad-foo87
   (field x (default)
%
[PRNTUTIL2] templerr.clp, Line 216: Syntax Error:  Check appropriate syntax for range attribute.

ERROR:
(deftemplate MAIN::bad-foo88
   (field x (range )
%
[PRNTUTIL2] templerr.clp, Line 217: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo89
   (field x (type)
%
[PRNTUTIL2] templerr.clp, Line 218: Syntax Error:  Check appropriate syntax for allowed-symbols attribute.

ERROR:
(deftemplate MAIN::bad-foo90
   (field x (allowed-symbols )
%
[PRNTUTIL2] templerr.clp, Line 219: Syntax Error:  Check appropriate syntax for allowed-integers attribute.

ERROR:
(deftemplate MAIN::bad-foo91
   (field x (allowed-integers )
%
[PRNTUTIL2] templerr.clp, Line 220: Syntax Error:  Check appropriate syntax for allowed-numbers attribute.

ERROR:
(deftemplate MAIN::bad-foo92
   (field x (allowed-numbers )
%%%%%%%%%%%%%%%%%%%%%%%%%%
[PRNTUTIL2] templerr.clp, Line 252: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo93
   (field x (type LEXEME SYMBOL 
%
[PRNTUTIL2] templerr.clp, Line 253: Syntax Error:  Check appropriate syntax for type attribute.

ERROR:
(deftemplate MAIN::bad-foo94
   (field x (type STRING LEXEME 
%
FALSE
CLIPS> (list-deftemplates)
aok-foo01
aok-foo02
aok-foo03
aok-foo04
aok-foo05
aok-foo06
aok-foo07
aok-foo08
aok-foo09
aok-foo10
aok-foo11
aok-foo12
aok-foo13
aok-foo14
aok-foo15
aok-foo16
aok-foo17
aok-foo18
aok-foo19
aok-foo20
aok-foo21
aok-foo21a
aok-foo21b
aok-foo21c
aok-foo21d
aok-foo22
aok-foo23
aok-foo24
aok-foo25
aok-foo26
aok-foo27
aok-foo28
aok-foo29
aok-foo30
aok-foo31
aok-foo32
aok-foo33
aok-foo34
aok-foo35
aok-foo36
aok-foo37
aok-foo38
aok-foo39
aok-foo40
aok-foo41
aok-foo42
aok-foo43
aok-foo44
aok-foo45
aok-foo46
aok-foo47
For a total of 51 deftemplates.
CLIPS> (dribble-off)