Basically, I've made a scanner in F#. Currently it returns a list of bunch of tuples with type (Token, string).
Ideally I'd like to return a list of tuples that might contain different types. For example:
(Token, string)
//if it's an identifier
(Token, float)
//if it's a float.
(Token, int)
//etc
So, Basically I'd like to return type (Token, _) but I'm not sure how to specify this. Right now it just has errors complaining of mismatched types. I'm looking through my book, and wikibooks, but I'm not really sure what this is called.
If this really isn't possible, I guess I can convert the types later on, but I was hoping I could just return stuff this way.
Thanks,