Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Haskell
Wiki community
Recent changes
Random page
HaskellWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Aprende Haskell en 10 minutos
(section)
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Usando librerías == Todo lo que se ha usado hasta ahora es parte del [[Prelude|Preludio]], que es un conjunto de funciones Haskell que siempre están disponibles sin solicitarlas. La mejor forma de volverse productivo en Haskell (aparte de la práctica!) es familiarizarse con otras [[Applications and libraries|librerías] que hacen lo que necesite. La documentación sobre las librerías estándar se encuentra en [http://haskell.org/ghc/docs/latest/html/libraries/ http://haskell.org/ghc/docs/latest/html/libraries/]. Hay varios módulos con: * [[Applications and libraries/Data structures |Useful data structures]] * [[Applications and libraries/Concurrency and parallelism |Concurrent and parallel programming]] * [[Applications and libraries/GUI libraries | Graphics and GUI libraries]] * [[Applications and libraries/Network | Networking, POSIX, and other system-level stuff]] * Two test frameworks, QuickCheck and HUnit * Regular expressions and predictive parsers * More... * [[Applications and libraries/Data structures |Estructuras de datos útiles]] * [[Applications and libraries/Concurrency and parallelism |Concurrencia y programación paralela]] * [[Applications and libraries/GUI libraries | Librerías de GUI y gráficos]] * [[Applications and libraries/Network | Redes, POSIX, y otras cosas al nivel del sistema]] * Dos frameworks de tests, QuickCheck y HUnit * Expresiones regulares y parsers * Más... <haskell> module Main where import qualified Data.Map as M errorsPerLine = M.fromList [ ("Chris", 472), ("Don", 100), ("Simon", -5) ] main = do putStrLn "Who are you?" name <- getLine case M.lookup name errorsPerLine of Nothing -> putStrLn "I don't know you" Just n -> do putStr "Errors per line: " print n </haskell> La palabra reservada <hask>import</hask> dice que se usará el código de <hask>Data.Map</hask> y que tendrá el prefijo de <hask>M</hask>. (Eso es necesario por que algunas funciones tienen el mismo nombre que las del preludio. La mayoría de librerías no necesitan la parte <hask>as</hask>). Si se quiere algo que no está en la librería estándar, intente buscar en http://hackage.haskell.org/packages/hackage.html o en la pagina de esta wiki [[applications and libraries|aplicaciones y librerías]]. Esta es una colección de varias librerías distintas escritas por muchas personas para Haskell. Una vez que se obtienen una librería, se puede extraerla y en el directorio obtenido hacer: runhaskell Setup configure runhaskell Setup build runhaskell Setup install En un sistema UNIX, se puede necesitar ser root para esta ultima parte.
Summary:
Please note that all contributions to HaskellWiki are considered to be released under simple permissive license (see
HaskellWiki:Copyrights
for details). If you don't want your writing to be edited mercilessly and redistributed at will, then don't submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!
Cancel
Editing help
(opens in new window)
Toggle limited content width