Specifying the search path for “load” operations in ghci
问题 In Loading source files it states that the search path for finding source files is specified with the -i option : ghci -idir1:...:dirn Does this mean that when one performs : :load test.hs then ghci looks in the directories above for test.hs? I saw the response at Problem Specifying Source Directory to GHC but I am still not clear about this. For example in Windows XP I put test.hs in : C:\Documents and Settings\winuser\My Documents and then ran : ghci -iC:\Documents and Settings\winuser\My