Check-in [68e5a476f2]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:merge
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 68e5a476f27b5e89f3fc735cc69b55ed18ca9106
User & Date: ovenpasta@pizzahack.eu 2016-07-07 20:51:20
Context
2016-07-07
20:53
warning in sqlite3.sls, updated README check-in: 4aff54750f user: ovenpasta@pizzahack.eu tags: trunk
20:51
merge check-in: 68e5a476f2 user: ovenpasta@pizzahack.eu tags: trunk
20:50
added usb library check-in: 88a8d47e99 user: ovenpasta@pizzahack.eu tags: trunk
18:28
Update README.md check-in: e185997951 user: noreply@github.com tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to README.md.

1
2
3
4
5
6
7


8

9
10
# thunderchez
libraries for chez scheme productivity

(import (fmt fmt)) 

(import (matchable))



(import (sqlite3))

(load-shared-object "libsqlite3.so.0")


|

|
|
|
|
>
>
|
>
|

1
2
3
4
5
6
7
8
9
10
11
12
13
# thunderchez
Libraries for [Chez Scheme](https://github.com/cisco/ChezScheme) productivity

  (import (fmt fmt)) 
  
  (import (matchable))
  
  ; based on chicken sqlite3 egg
  
  (import (sqlite3))
  
  (load-shared-object "libsqlite3.so.0")

Changes to sqlite3.sls.

54
55
56
57
58
59
60
61
62
63
   (only (srfi s13 strings) string-contains-ci)
   (srfi s11 let-values)
   (srfi s26 cut)
   (sql-null))

  (include "sqlite3.scm")

  (load-shared-object "libsqlite3.so.0")

) ; library sqlite3







|


54
55
56
57
58
59
60
61
62
63
   (only (srfi s13 strings) string-contains-ci)
   (srfi s11 let-values)
   (srfi s26 cut)
   (sql-null))

  (include "sqlite3.scm")

 ; (load-shared-object "libsqlite3.so.0")

) ; library sqlite3