package interp

import (
	
	
)

// realFS complies with the fs.FS interface (go 1.16 onwards)
// We use this rather than os.DirFS as DirFS has no concept of
// what the current working directory is, whereas this simple
// passthru to os.Open knows about working dir automagically.
type realFS struct{}

// Open complies with the fs.FS interface.
func ( realFS) ( string) (fs.File, error) {
	,  := os.Open()
	if  != nil {
		return nil, 
	}
	return , nil
}