Difference between revisions of "Talk:Haskell"

From NixOS Wiki
Jump to: navigation, search
m (Say thank you!)
(Duplicated code block)
 
Line 2: Line 2:
  
 
[2022/10/25] Thanks for working on this page. It is informative and has improved a lot since my last visit around a year ago. Thank you!
 
[2022/10/25] Thanks for working on this page. It is informative and has improved a lot since my last visit around a year ago. Thank you!
 +
 +
In the "developPackage" section, there is a duplicated code block:
 +
 +
    $ nix-build
 +
    $ ./result/bin/yourprogram
 +
 +
I believe the second block should be something like:
 +
 +
    $ nix-shell
 +
    [nix-shell:~]$

Latest revision as of 17:16, 1 June 2025

"Nix recipes for Haskellers" link is currently broken (4/2/2021).

[2022/10/25] Thanks for working on this page. It is informative and has improved a lot since my last visit around a year ago. Thank you!

In the "developPackage" section, there is a duplicated code block:

   $ nix-build
   $ ./result/bin/yourprogram

I believe the second block should be something like:

   $ nix-shell
   [nix-shell:~]$