6 lines
134 B
OCaml
6 lines
134 B
OCaml
let () =
|
|
print_endline (
|
|
if Unix.isatty Unix.stdin
|
|
then "Input comes from tty."
|
|
else "Input doesn't come from tty."
|
|
)
|