пакет. Следовательно, вы должны импортировать его, чтобы использовать его.
я есть функция. Допустим, это выглядит так:
strangeFunc = do
putStrLn "Welcome to the game! Please, enter the name of the file: "
--some more code
Затем я хочу, чтобы он работал вечно, поэтому я делаю это
strangeFunc = forever $ do
putStrLn "Welcome to the game! Please, enter the name of the file: "
--some more code
Но у меня есть ошибка:variable not in scope: forever
, Как я могу это исправить?