Hi,
It would be nice if we could create new bots using just a string containing the src, or an object containing {name,play}!
this way one could easily have a "bot factory" function or a "database", without having to use the filesystem
this could be done, for instance, by extending addPlayer to support bot objects, so we can init our own, like:
myBot = new Bot(botOpts)
myBot.setup(mySourceCode)
# OR
myBot.setup(name: "foo", play: myFunction)
table.addPlayer(myBot)
This would be useful for training bots