agda nixos test: fix hello world program

master
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
1 changed files with 2 additions and 1 deletions

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
{