(closed-file? file) -> boolean
Tests if the given file is closed.
>> (define a (open-file "test.txt" "r")) :: [fileopen test.txt] >> (close-file a) :: null >> (closed-file? a) :: #t