agda nixos test: fix hello world program

This commit is contained in:
Alex Rice 2021-03-17 22:01:59 +00:00
parent d600f00664
commit c60bd18006
No known key found for this signature in database
GPG key ID: 93DDCD7A2B3F3B88

View file

@ -3,8 +3,9 @@ import ./make-test-python.nix ({ pkgs, ... }:
let
hello-world = pkgs.writeText "hello-world" ''
open import IO
open import Level
main = run(putStrLn "Hello World!")
main = run {0} (putStrLn "Hello World!")
'';
in
{