// retoor <retoor@molodetz.nl>
import "tempfile" for TempFile
var dir = TempFile.gettempdir()
System.print(dir is String) // expect: true
System.print(dir.count > 0) // expect: true
System.print(TempFile.gettempprefix()) // expect: tmp
System.print(TempFile.tempdir == null) // expect: true
TempFile.tempdir = "/custom/path"
System.print(TempFile.gettempdir()) // expect: /custom/path
TempFile.tempdir = null