9 lines
185 B
Text
9 lines
185 B
Text
// local to current directory
|
|
local(f = file('input.txt'))
|
|
handle => { #f->close }
|
|
#f->size
|
|
|
|
// file at file system root
|
|
local(f = file('//input.txt'))
|
|
handle => { #f->close }
|
|
#f->size
|