fix require, add current-inexact-milliseconds primop

This commit is contained in:
Sam Caldwell 2020-10-19 11:40:22 -04:00
parent 8446a0d770
commit 659715cd0e
2 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@
(define-primop zero? (→fn Int Bool))
(define-primop positive? (→fn Int Bool))
(define-primop negative? (→fn Int Bool))
(define-primop current-inexact-milliseconds (→fn Int))
(define-primop bytes->string/utf-8 ( ByteString (Computation (Value String) (Endpoints) (Roles) (Spawns))))
(define-primop string->bytes/utf-8 ( String (Computation (Value ByteString) (Endpoints) (Roles) (Spawns))))

View File

@ -19,7 +19,7 @@
(require "core-types.rkt")
(require (only-in "prim.rkt" Int Bool))
(require (only-in "list.rkt" ~List))
(require (only-in "list.rkt" ~List List))
(require (postfix-in - racket/set))