13 lines
372 B
Scheme
13 lines
372 B
Scheme
#!/usr/bin/env pika-script-fu-interpreter-3.0
|
|
|
|
; Test a .scm file that does not register any procedure
|
|
|
|
; Expect in the console:
|
|
; "(test6.scm:164): scriptfu-WARNING **: 10:06:07.966: No procedures defined in /work/.home/.config/PIKA/2.99/plug-ins/test6/test6.scm"
|
|
|
|
(define (script-fu-test6)
|
|
(pika-message "Hello script-fu-test6")
|
|
)
|
|
|
|
; !!! No call to script-fu-register
|