Tim Wintle
unread,Nov 8, 2010, 5:01:25 AM11/8/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to szl-users
Hi,
I'm trying to embed szl in a simple C++ app, based on the mapreduce
sample.
I've got the program
string program =
"t:table set(100)[int] of int;"
"fields: array of bytes = splitcsvline(input);"
"index: int = int(string(fields[0]), 10);"
"value: int = int(string(fields[1]), 10);"
"emit t[index] <- value;";
but running sawzall::Executable is giving me the error
"mapper:1: splitcsvline undeclared"
Am I missing a requirement to initialize the intrinsic functions
separately somehow?
p.s. thanks for releasing the code btw :-)