add string=?

This commit is contained in:
Sam Caldwell 2020-10-22 16:45:48 -04:00
parent b66ab0bfcd
commit 04b58f9d9f
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@
(define-primop positive? (→fn Int Bool)) (define-primop positive? (→fn Int Bool))
(define-primop negative? (→fn Int Bool)) (define-primop negative? (→fn Int Bool))
(define-primop current-inexact-milliseconds (→fn Int)) (define-primop current-inexact-milliseconds (→fn Int))
(define-primop string=? (→fn String String Bool))
(define-primop bytes->string/utf-8 ( ByteString (Computation (Value String) (Endpoints) (Roles) (Spawns)))) (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)))) (define-primop string->bytes/utf-8 ( String (Computation (Value ByteString) (Endpoints) (Roles) (Spawns))))