blob: 7c8224ee760001fb1a58c1fca6afd10112d3ea6b [file] [log] [blame]
swissChili7a6f5eb2021-04-13 16:46:02 -07001#include "lisp.h"
2
3int main (int argc, char **argv)
4{
5 struct istream *is = new_stristream_nt ("abcde \"asdf dsf sdf\"");
6 struct value val;
7
8 while ( read1 (is, &val) )
9 {
10 printval (val, 0);
11 }
12
13 del_stristream (is);
14}