File: LocOvrRun_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 (18 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
\  First Local-overrun test


: ducksoup ( n1 n2 n3 n4 -- m1 m2 )
	{ 	\  Declare some locals
	   _harpo  ( the quiet one) _chico
	    _groucho |   \  He's funny, right?
	     _zeppo  ( who? ) _karl  \  Is he part of the act?
	      \  Look Ma, no close-curly brace!
	      (  Unterminated comment
	      }  \  Even if there were a close-curly brace,
	         \      the unterminated comment masks it.
    _groucho _harpo *
    _chico +
    _groucho _zeppo = if  swap exit then
    _groucho + swap _zeppo + 
;