Re: include (variable with path/file) ?
- Posted by David Cuny <dcuny at LANSET.COM> Sep 14, 2000
- 544 views
Dan B Moyer wrote:
> include DirectoryWithWin32LibInIt & "Win32Lib.ew"
You *could* write something like this:
integer file
file = open("dynamic.e", "w")
puts( file, DirectoryWithWin32LibInIt & "Win32Lib.ew" & '\n' )
close( file )
include dynamic.e
But you won't be able to bind it!
-- David Cuny

