Haskell is a pure functional programming languge, We will later come back to things like pure and functional. In this post, we will first check on the surface, how it looks like, how it works, and etc...
this tutorial refers to the official twiki site at http://www.haskell.org/haskellwiki/Tutorials at http://haskell.org; while the examples are most take from site "Learn You a Haskell for Great Good!(LYAH)"
the example have examples on the following.
- function definition
- function application
- functions (sum, mininum, maxinum, product, elem
- list
- list functions head, tail, init, last, null, reverse, take, drop, repeat, replicate
- list comprehension - filtering, multiple filtering, multiple lists
- zip
- tuple
- tuple function - fst, snd
doubleMe x = x + x doubleUs x y = doubleMe x + doubleMe y doubleSmallNumber x = if x > 100 then x else x * 2 -- else part is mandatory is Haskell doubleSmallNumber' x = (if x > 100 then x else x * 2) + 1 -- function cannot begin with uppercase letter conanO'Brien = "It's a-me, Conan O'Brian!" -- intro to list let lostNumbers = [4, 8, 15, 16, 23, 42] -- list concat -- [1,2,3,4] ++ [9,10,11,12] --"hello" ++ " "+ "world" --['w', 'o'] ++ ['', 't'] -- putting something at the beginning of one list -- 'A' : " SMALL CAT" -- 5:[1,2,3,4,5] -- get one element out "Steve Buscemi" !! 6 [9.4,33.2,96.2,11.2,23.25] !! 1 -- list can be compared if the stuff they contain can be compared. [3,2,1] > [2, 1, 0] [3,4,2] == [3,4,2] -- takes a list and returns its head head [5,4,3,2,1] -- takes a list and returnsits tail tail [5,4,3,2,1] last [5,4,3,2,1] init [5,4,3,2,1] -- exception on empty list head [] -- check null on a list null [1, 2, 3] -- reverse everse [5,4,3,2,1] -- take take 3 [5,4,3,2,1] -- drop drop 3 [8,4,2,1,5,6] -- maximum maximum [1,9,2,3,4] -- mininum minimum [8,4,2,1,5,6] -- sum sum [5,2,1,6,3,2,5,7] -- product product [6,2,1,2] -- elem : tells if a thing is element of the list 4 `elem` [3,4,5,6] 10 `elem` [3,4,5,6] -- ranges [1..20 ['a'..'z'] -- range with steps -- it reads, 2, 4, ... until 20 [2, 4..20] -- cannot do --[20..1] -- cycle -- take finite numbers of elements from a cycled list take 10 (cycle [1,2,3]) take 12 (cycle "LOL ") -- repeat take 10 (repeat 5) -- replicate replicate 3 10 -- List comprehension [x*2 | x <- [1..10]] -- with condition [x * 2 | x <- [1..10], x * 2 >= 12] -- [x*2 | x <-[50..100], x `mod` 7 == 3] -- to a function boomBangs xs = [ if x < 10 then "BOOM!" else "BANG!" | x <- xs, odd x] boomBangs [7..13] -- chain predicate [ x | x <- [10..20], x /= 13, x /= 15, x /= 19] -- from multiple llsts [ x*y | x <- [2,5,10], y <- [8,10,11]] -- with filter [ x*y | x <- [2,5,10], y <- [8,10,11], x*y > 50] -- length` with wildcards length' xs = sum [1 | _ <- xs ] -- list comprehension on list removeNonUppercase st = [ c | c <- st, c `elem` ['A'..'Z']] -- multiple list comprehension let xxs = [[1,3,5,2,3,1,2,4,5],[1,2,3,4,5,6,7,8,9],[1,2,4,2,1,6,3,1,3,2,3,6]] [ [ x | x <- xs, even x ] | xs <- xxs] -- tuples -- -- not allowed -- [(1,2),(8,11,5),(4,5)] -- fst fst (8, 11) fst ("Wow", False) -- snd snd (8, 11) snd ("Wow", False) -- zip zip[1,2,3,4,5] [5,5,5,5,5] -- zip : loger get cut zip [5,3,2,6,2,7,2,5,4,6,6] ["im","a","turtle"] -- zip : finite with infinite zip [1..] ["apple", "orange", "cherry", "mango"] -- a mind numbing techiniques let triangles = [ (a,b,c) | c <- [1..10], b <- [1..10], a <- [1..10] ] let rightTriangles = [ (a,b,c) | c <- [1..10], b <- [1..c], a <- [1..b], a^2 + b^2 == c^2] let rightTriangles' = [ (a,b,c) | c <- [1..10], b <- [1..c], a <- [1..b], a^2 + b^2 == c^2, a+b+c == 24]
相关推荐
Atom-ide-haskell-hoogle 是一个专门为 Atom 编辑器设计的插件,它整合了 Haskell 的 Hoogle 工具,以提供强大的代码提示和搜索功能。Atom 是一款由 GitHub 开发的开源文本编辑器,它利用现代 web 技术如 HTML、CSS ...
在 Emacs 中,`haskell-mode` 是一个专门为了提升 Haskell 开发体验而设计的模式。 `haskell-mode` 提供了多种增强功能,旨在帮助 Haskell 开发者更高效地编写、调试和理解代码。这个模式包括以下关键特性: 1. **...
在数据可视化领域,`haskell-chart`库提供了一种高效且灵活的方式来创建2D图表,这对于数据分析、科学计算以及教学等场景非常有用。这个库是开源的,意味着任何人都可以查看其源代码,学习并贡献改进。 `haskell-...
**哈斯克尔编程语言与Atom-Haskell-GHC-Mod** 哈斯克尔(Haskell)是一种纯函数式编程语言,以其优雅的语法、强静态类型系统和编译时优化而受到程序员的喜爱。它鼓励使用不可变数据和惰性求值,这使得哈斯克尔在...
Haskell-Data-Analysis-Cookbook, Haskell数据分析 cookbook的附带源代码 Haskell-Data-Analysis-Cookbook这是 Haskell数据分析 cookbook的附带源代码。最新的源代码可以在GitHub上获得: ...
Atom-Haskell-Debug是针对Haskell开发者的一个强大工具,它允许你在流行的Atom文本编辑器中集成一个图形化的Haskell调试器。这个工具基于GHCi(Glasgow Haskell Compiler Interface),GHCi是Haskell的交互式环境,...
从1.0.0开始,haskell-ghc-mod提供haskell-completion-backend服务。 注意:在1.0.0之前,提供了ide-backend服务。 它已被废弃以支持ide-haskell的UPI。 您可以在找到描述 执照 版权所有:copyright:2015 Atom-...
haskell-ghc-mod原子包 该软件包主要用作后端。 Haskell ghc-mod打开通往ghc-modi的管道,并查询类型,信息并检查错误。 安装与配置 请参考官方文档站点 服务中心API 从1.0.0版本开始,haskell-ghc-mod提供...
Get Programming with HASKELL-2018-英文版
【标题】:“Atom-atom-haskell-scry,扩散系数.zip” 涉及的主要知识点是 Atom 编辑器与 Haskell 语言的集成以及 SCRY 工具的使用。 【描述】:“Atom-atom-haskell-scry.zip”的描述指出,这个压缩包包含了一个名...
用于 haskell-relational-record 的 MySQL 驱动程序 这个项目被合并到 。 准备 $ git clone git@github.com:khibino/haskell-relational-record.git $ git clone git@github.com:bos/hdbc-mysql.git $ git clone ...
Atom-ide-haskell-repl是针对Atom文本编辑器的一个扩展插件,专为Haskell编程语言提供集成的GHCi(Glasgow Haskell Compiler Interface)交互式环境,即REPL(Read-Eval-Print Loop)。这个插件允许开发者在Atom编辑...
在Haskell的世界里,开发环境的配置至关重要,而`haskell-dev-tools`就是一个方便的元项目,它专门设计用于简化Haskell开发工具的安装和升级过程。这个项目扮演了一个集合和自动化工具的角色,使得开发者无需手动...
Haskell-dap是一个开源项目,它实现了调试适应性协议(Debug Adapter Protocol,简称DAP)的接口,使得Haskell开发者可以充分利用这个协议进行程序调试。DAP是一个通用的、跨平台的协议,允许IDEs(集成开发环境)和...
### 函数式编程:Haskell到Java的转换 #### 概述 本文旨在探讨函数式编程语言Haskell如何被编译或转换为Java语言。Haskell作为一种纯函数式编程语言,以其强大的类型系统、惰性求值机制以及高度抽象的能力在学术界...
"haskell-tools"就是这样一个项目,它专注于为Haskell开发者提供一系列实用的辅助工具,以优化他们的开发流程。 ### 1. GHC:Glasgow Haskell Compiler GHC是Haskell的主要编译器,也是haskell-tools的重要组成...
Atom-ide-haskell-cabal.zip,Cabal backend provider for ide-haskellIDE Haskell Cabal套餐,atom是一个用web技术构建的开源文本编辑器。
### Haskell - The Craft of Functional Programming #### 一、概述 《Haskell - The Craft of Functional Programming》是一本深入探讨Haskell编程语言的经典著作。本书由Tantanoid编写,并于1999年由Addison-...
haskell-in-haskell compile in.hs out.c in.hs是Haskell输入文件,而out.c是要生成的C代码。 编译器仅适用于单个Haskell文件。 要运行生成的代码,您需要拥有一个C编译器,并在运行之前确保runtime.c文件位于同一...
Atom-IDE-Haskell-HIE 是一个专门为 Haskell 开发者设计的 Atom 文本编辑器插件,它集成了 Haskell IDE Engine (HIE) 的 Language Server Protocol (LSP) 功能。这个插件允许开发者在 Atom 编辑器中享受到强大的代码...