summaryrefslogtreecommitdiff
path: root/Biz/Bild/Bessel.scm
blob: ad408348797dff4c273a8dc94bc9f0864dbe8ba5 (plain)
1
2
3
4
5
6
7
8
9
10
;; : out bessel.exe
(import (only (rnrs base) assert))
(load-extension "libguile-bessel" "init_bessel")
(define (main args)
  (let ((result (j0 2)))
    (display "testing")
    (newline)
    (display result)
    (newline)
    (assert (= (j0 2) 0.22389077914123567))))