This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.
- Haskell is a functional programming language.
| from concurrent.futures import as_completed, ThreadPoolExecutor | |
| from urllib.request import urlopen | |
| import re | |
| import sys | |
| DEFAULT_REGEX = r'<input type="text" id="nacional" value="([^"]+)"/>' | |
| CURRENCY = { | |
| 'dolar': 'http://dolarhoje.com/', | |
| 'euro': 'http://eurohoje.com/', |
| (* | |
| ocamlbuild \ | |
| -pkg containers \ | |
| -pkg lwt \ | |
| -pkg yojson \ | |
| -pkg conduit.lwt-unix \ | |
| -pkg nocrypto \ | |
| -pkg nocrypto.unix \ | |
| -pkg websocket.lwt \ | |
| -cflags "-w A-4-40-41-42-44" \ |
This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.