summary refs log tree commit diff stats
path: root/tests/async
diff options
context:
space:
mode:
Diffstat (limited to 'tests/async')
0 files changed, 0 insertions, 0 deletions
n6' href='#n6'>6 7 8 9 10 11 12
           
                        









                                                            
discard """
  file: "tmemfiles1.nim"
"""
import memfiles, os
var
  mm: MemFile
  fn = "test.mmap"
# Create a new file
mm = memfiles.open(fn, mode = fmReadWrite, newFileSize = 20)
mm.close()
mm.close()
if fileExists(fn): removeFile(fn)