Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Whenever I start Hugs, it always says

Haskell 98 mode: Restart with command line option -98 to enable extensions

How exactly do you do that?

share|improve this question
1  
What exactly do you mean when you say "start Haskell?" Which compiler and operating system are you using? – Rhymoid Nov 21 '11 at 23:21
Use GHCi and GHC not Hugs – alternative Nov 22 '11 at 0:55

2 Answers

up vote 4 down vote accepted

If you're launching it from a command-line (Bash prompt, Windows Command Prompt, or the like), you would just change your command from ... to ... -98. (For example, if you've been running the command haskell, you would now run the command haskell -98.)

If you're launching it from a shortcut icon in Windows, such as a start-menu item, you have to modify that shortcut: right-click, select "Properties", and change "Target" from ... (whatever it is now) to ... -98 (whatever it is now, plus a space, a hyphen, and ninety-eight).

share|improve this answer

Well, just add -98 as command line option ...

See Hugs manual, section 7.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.