I was wondering if there is any project that aims to
interpret haskell within haskell.
Is it feasable that a program can import a user's .hs
file that has something like:
greeting :: String
greeting = "Something"
port :: Int
port = 32 + 33
And the program can parse and execute the user's
functi
> I wonder what happens to the port when URI parses http URL
> string. Is it
> possible to check for ":" and use the stated port instead of port 80?
> Anyone has experience doing it before?
> Thanks in advance.
> Cheers,
> Gek
The Network.URI library will extract the "host:port":
> authority (f
Hi,
I wonder what happens to the port when URI parses http URL string. Is it
possible to check for ":" and use the stated port instead of port 80?
Anyone has experience doing it before?
Thanks in advance.
Cheers,
Gek
___
Haskell mailing list
[EMAIL PROT