Genie Discord forum

Newbie to Julia with a little background in database programming.
I am trying to build a survey app that would allow building a collection of survey questions with standard replies, like,
using SearchLight
function up()
create_table(:questions) do
pk()
column(:question,

I don't know about storing the answers as tuple objects, but you could store them as a single string with a specific delimiter. For instance answers = "answer1 | answer2 | answer3". Then you could recover each individual answer with answer_array = split(answers, "|")

this is an example survey app build with genie. Not sure if it contains the question your asked. @tecosaur would know

Yea, I'm mostly happy with what I ended up with there

the framework is generic, but the particular config file that exists is for the Emacs survey