For now I've just written a quick batch script that I execute via system

```
 #!/bin/bash

 for f in 'tmp/sql'/*.sql
 do
   echo "Filename: $f"
   ./sqlite3.exe output.sq3 < $f
   echo "----"
 done
```

It works, but I'd still like to figure out exactly what's wrong. I'm relatively 
new to racket, is it possible to debug the standard library to see whats going 
wrong?

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to