Difference between revisions of "Stack"

From HaskellWiki
Jump to navigation Jump to search
(Created page with "{{Stub}} For the description of the common computer term <code>stack</code>, see the Wikipedia article [https://en.wikipedia.org/wiki/Stack_(abstract_data_type) Stack (abstra...")
 
(→‎Blog posts / Tutorials: Changed link to a more up-to-date article)
 
(3 intermediate revisions by 2 users not shown)
Line 8: Line 8:
 
Stack is a development tool for the entire Haskell development cycle, from installing the compiler and packages to testing and benchmarking software.
 
Stack is a development tool for the entire Haskell development cycle, from installing the compiler and packages to testing and benchmarking software.
   
  +
== Blog posts / Tutorials ==
  +
  +
* [https://duplode.github.io/posts/casual-hacking-with-stack-reloaded.html Casual Hacking With stack, Reloaded] - Explains how to start up a new package with Stack and what each file is for.
   
 
== Important links ==
 
== Important links ==
   
  +
* [https://docs.haskellstack.org/ The Haskell Tool Stack], the official Stack website.
 
* [https://github.com/commercialhaskell/stack#readme The readme file]
 
* [https://github.com/commercialhaskell/stack#readme The readme file]
* [https://github.com/commercialhaskell/stack/wiki/Downloads Download instructions]
+
* [http://docs.haskellstack.org/en/stable/install_and_upgrade/ Download instructions]
* [https://github.com/commercialhaskell/stack/wiki/FAQ FAQ list]
+
* [http://docs.haskellstack.org/en/stable/faq/ FAQ list]
 
* [https://groups.google.com/forum/#!forum/haskell-stack The mailing list]
 
* [https://groups.google.com/forum/#!forum/haskell-stack The mailing list]
 
* [https://github.com/commercialhaskell/stack The stack repository]
 
* [https://github.com/commercialhaskell/stack The stack repository]
 
   
 
== Other links ==
 
== Other links ==

Latest revision as of 13:57, 28 August 2019

This article is a stub. You can help by expanding it.

For the description of the common computer term stack, see the Wikipedia article Stack (abstract data type) or Call stack.


Introduction

Stack is a development tool for the entire Haskell development cycle, from installing the compiler and packages to testing and benchmarking software.

Blog posts / Tutorials

Important links

Other links