Skip to content

Instantly share code, notes, and snippets.

@asterite
Created March 17, 2015 23:09
Show Gist options
  • Save asterite/7876faa5716c25d861db to your computer and use it in GitHub Desktop.
Save asterite/7876faa5716c25d861db to your computer and use it in GitHub Desktop.
lib LibC
fun opendir(name : UInt8*) : Dir*
fun find_first_file = FindFirstFile(...) : Dir*
end
class Dir
def initialize(@path)
ifdef windows
@dir = LibC.find_first_file(@path, ...)
else
@dir = LibC.opendir(@path)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment