- added .gitignore
- moved sine-play into examples
- changed require paths to collection-relative
- a few comments
This commit is contained in:
John Clements 2014-02-18 11:39:04 -08:00
parent 443f0f34fa
commit 16fc19ee8e
6 changed files with 16 additions and 10 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
compiled/
*~

View file

@ -28,6 +28,9 @@ Licensed under GPL (2 or 3? FIXME)
(define mod remainder)
|#
;; JBC, 2014-- looks like most of these library functions have
;; equivalents in Racket....
;; prelude.scm ;;;;;;;;;;;;;;;;;;;;;;

View file

@ -1,12 +1,11 @@
#lang racket
(require
rnrs
"../rhs/rhs.rkt"
"../sosc/bytevector.rkt"
"../sosc/transport.rkt"
"../sosc/sosc.rkt"
rhs/rhs
sosc/bytevector
sosc/transport
sosc/sosc
(prefix-in srfi: srfi/27)
(prefix-in srfi: srfi/19))

View file

@ -1,15 +1,18 @@
#lang racket
(require rnrs
"../rhs/rhs.rkt"
rnrs/bytevectors-6
rnrs/io/ports-6)
rhs/rhs
rnrs/bytevectors-6
rnrs/io/ports-6)
(provide (all-defined-out)
put-bytevector
get-bytevector-n
bytevector-length)
;; JBC-2014 -- looks like all of these have
;; equivalents in Racket...
;; bytevector -> (port -> any) -> any
(define with-input-from-bytevector
(lambda (b f)

View file

@ -4,13 +4,12 @@
(require
rnrs
"../rhs/rhs.rkt"
rhs/rhs
"bytevector.rkt"
rnrs/bytevectors-6 ;; TODO - should be provided by bytevector.rkt
rnrs/io/ports-6
)
(provide message
bundle
encode-osc