博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[haskell] haskell helloworld
阅读量:6673 次
发布时间:2019-06-25

本文共 351 字,大约阅读时间需要 1 分钟。

安装(Glasgow Haskell Compiler)

sudo apt-get install ghc

进入shell

ghci

hello.hs

module Main whereimport System.Environment main :: IO ()main = do    args <- getArgs    putStrLn ("Hello, " ++ args !! 0)

compiler & exec

$ ghc -o hello --make hello.hs [1 of 1] Compiling Main             ( hello.hs, hello.o )Linking hello ...$ ./hello  haskellhello, haskell

 

 

转载地址:http://gbgxo.baihongyu.com/

你可能感兴趣的文章
sql server 2014登录账号
查看>>
Solr6 Suggest(智能提示)
查看>>
关于inodes占用100%的问题及解决方法
查看>>
golang学习笔记10 beego api 用jwt验证auth2 token 获取解码信息
查看>>
eclipse maven Cannot change version of project facet Dynamic web module to 3.0
查看>>
微信支付错误:201 商户订单号重复
查看>>
多媒体技术 有损压缩算法之Huffman和自适应Huffman算法
查看>>
nvidia驱动安装
查看>>
git 版本历史
查看>>
XHTML 教程(摘录自 W3C School)
查看>>
Directx11教程(50) 输出depth/stencil buffer的内容
查看>>
sleep()和wait()有什么区别
查看>>
笔者亲自测试通过的修改SharePoint 2013的Topology脚本记录
查看>>
搜索引擎首页
查看>>
YARN - Yet Another Resource Negotiator
查看>>
[ASP.NET MVC 小牛之路]03 - Razor语法(转)
查看>>
linux系统下make & make install
查看>>
053医疗项目-模块五:权限设置-将用户操作权限写入Session
查看>>
DocX开源WORD操作组件的学习系列一
查看>>
svn导出某两个版本之间变化的文件
查看>>