Skip to content

Commit

Permalink
synced with master, new fasl fixed point
Browse files Browse the repository at this point in the history
  • Loading branch information
aoh committed May 9, 2018
1 parent 076247d commit 2856c68
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Binary file modified fasl/init.fasl
Binary file not shown.
2 changes: 1 addition & 1 deletion owl/ol.scm
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
(define *interactive* #false) ;; be verbose
(define *include-dirs* '(".")) ;; now we can (import <libname>) and have them be autoloaded to current repl
(define *owl-names* #empty)
(define *owl-version* "0.1.14")
(define *owl-version* "0.1.15")

(import
(owl intern)
Expand Down
11 changes: 5 additions & 6 deletions scheme/time.scm
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(define-library (scheme time)

(import
(scheme base)
(only (owl time) time time-ms))
(owl defmac)
(owl time))

(export
current-jiffy
Expand All @@ -13,9 +13,8 @@

;; note: not using clock() and CLOCKS_PER_SEC, because the bytecode must be portable

(define jiffies-per-second 1000)

(define (jiffies-per-second) 1000)
(define current-jiffy time-ms)

(define current-second time)
))
(define current-second time)))

0 comments on commit 2856c68

Please sign in to comment.