Handbook
Glossary
executable-file? ( path -- ? )
Vocabulary
io
.
standard-paths
.
private
Inputs
path
an
object
Outputs
?
an
object
Definition
USING:
combinators.short-circuit
io.files
io.files.info
kernel
;
IN:
io.standard-paths.private
:
executable-file?
( path -- ? )
{
[
file-exists?
]
[
directory?
not
]
[
file-executable?
]
}
1&&
;