2021-12-07 20:39:31 +01:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
exec guile -s "$0" "$@"
|
|
|
|
!#
|
|
|
|
|
|
|
|
;;; Rule that outputs "Hello from potato-make!" when called as `./hello.scm hello`
|
|
|
|
|
|
|
|
(use-modules (potato make))
|
|
|
|
(initialize)
|
|
|
|
|
2021-12-07 22:13:26 +01:00
|
|
|
(: "hello" '()
|
2022-08-28 06:52:59 +02:00
|
|
|
(lambda ()
|
|
|
|
(display "Hello from potato-make!\n")))
|
2021-12-07 20:39:31 +01:00
|
|
|
|
|
|
|
(execute)
|