Say I have a list of numbers from 1 to MAGIC_NUMBER -- Is there a way I can declare this beforehand ?
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.
|
|
Sure. In fact, given that Haskell is purely functional, it's much easier to define a constant than a non-constant.
|
||||
|
|
|
Chuck's and ony's answers are correct. There's one trap you should be aware of:
is NOT what you might expect - |
|||
|
|
You can use algebraic data in all your calculations and use some named values if they are really "magic", or build render of algebraic values to "magic" numbers and many more:
*Main> map fromEnum [Alpha .. ] [0,1,2] it :: [Int] *Main> zip [Alpha .. ] [1..] [(Alpha,1),(Beta,2),(Gamma,3)] it :: [(Magics, Integer)] |
||||
|
|