C 语言版的一个问题的 Haskell 实现
原题在此: http://bbs.chinaunix.net/thread-1260094-1-1.html Haskell Code: #!/usr/bin/runhaskellimport System.Environmentf' 1 = [0]f' n = pre…
自己写的练习题(yaht exercise 3.10)
只看了头三章 花了好长时间才写的这段代码 贴出来大家批评 yaht exercise 3.10:Write a program that will repeatedly ask the user for numbers unti…
the Yale Haskell Group
Yale has been an integral part of the development and implementation of the Haskell programming language since its inception. We have helped…
isInfixOf ? 没有? (已解决)
Prelude> :m ListPrelude List> :i isPrefixOfisPrefixOf :: (Eq a) => [a] -> [a] -> Bool -- Defined in Data.ListPrelude List> :i isSuff…
haskell中函数只有一个参数吗?
(+) a b => ((+)a) b 其实该计算过程涉及到两个函数吧? 那我们该说 (+) 函数有两个参数还是有一个参数? [ 本帖最后由 izhier 于 2009-3-29 17:16 编…
haskell 初学问疑
f x = case x of 1->-1 2->2 _->0ERROR:Syntax error in case expression (unexpected symbol "->-")复制代码 1.以上代码出错可否判断 hask…
[Haskell] 我写了个读取 ini 格式配置文件的简单模块
暂时只能读取,还不能修改,不过对付简单的应用程序应该够用了。 我还在继续完善,但已经迫不及待想要和大家交流一下了。 module IniConfig whereimp…