diff options
| author | Pjotr Prins | 2025-11-22 11:56:58 +0100 |
|---|---|---|
| committer | Pjotr Prins | 2025-11-22 11:56:58 +0100 |
| commit | 5b6b5e2ad97b4733125c0845cfae007e8094a687 (patch) | |
| tree | a44eee936913cadac545c3e71dfc8257c1d1caf3 /src/guile | |
| parent | 8842a9544bf25041afc52c4481ff7e80bbd55a54 (diff) | |
| download | pangemma-5b6b5e2ad97b4733125c0845cfae007e8094a687.tar.gz | |
Diffstat (limited to 'src/guile')
| -rw-r--r-- | src/guile/examples.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/guile/examples.scm b/src/guile/examples.scm new file mode 100644 index 0000000..8855a34 --- /dev/null +++ b/src/guile/examples.scm @@ -0,0 +1,6 @@ +(define-module (example) + #:use-module (srfi srfi-4) + #:export (make-floats)) + +(define (make-floats) + #f64( 1.0 2.2 3.3 4.0)) |
