This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env nix-shell | |
#! nix-shell -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-unstable-small.tar.gz | |
#! nix-shell -p guile guile-fibers guile-gnutls guile-goblins | |
#! nix-shell -i "guile --no-auto-compile -s" | |
!# | |
(use-modules (goblins) | |
(goblins actor-lib methods)) | |
(define a-vat (spawn-vat)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env nix-shell | |
#! nix-shell -p decker | |
#! nix-shell -i lilt | |
sys.seed:sys.ms | |
on greet do | |
greetings: insert exclamation object with | |
"Ciao" "bella" | |
"Hello" "world" |
OlderNewer