I have a list ['%','&','/']. How can i convert it into the form [%,&,/] ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
closed as not a real question by sclv, Ken White, luqui, Thomas M. DuBuisson, Don Stewart Apr 15 '11 at 20:43
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
|
|||||||||||
|
Use it like this:
But if you want this to work with
And then operate on
|
|||||||
|
[%,&,/]is not a list of int. It's not even valid Haskell. You need to be clearer on what you want. – R. Martinho Fernandes Apr 15 '11 at 19:28