The Lambda Lab
/
projects
/
forth.jl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Moved some input stream words to library.
[forth.jl.git]
/
src
/
lib_3_input.4th
1
\ Input stream definitions
2
3
: SOURCE-ID
4
SOURCE-ID-VAR @ ;
5
6
: QUERY-INPUT
7
SOURCE-ID ?DUP 0= IF
8
QUERY
9
ELSE
10
QUERY-FILE
11
THEN
12
;