machine-learning-in-haskell: init

This commit is contained in:
2025-02-04 23:48:50 +01:00
parent a5e8230167
commit 03f5aa3ffe
3 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
(pkgs.ghc.withPackages (hs: [hs.random]))
];
}