You might have wondered what the "go", "want", "get" and "grab" functions in the API are for. Well, it's easy: They're all synonyms :) [Originally, I wanted to call the function "in", but sadly, that is a keyword in Lua.] It's just one of the most-used functions in TinyBrain: Including another snippet. You just pass the snippet ID and the snippet is loaded and expands into you current context. For example, both of these statements have the same result: get("#175") go(175) The former is a little better because it automatically turns the #175 into a link in the program listing. Function-wise, there's no difference. Each of these statements gives you the "tableToString" function which is defined in #175. If you want to run the included snippets in a separate sandbox, you can pass the sandbox as a second argument: env = newCleanEnv() get("#175", env) assert(env.tableToString) newCleanEnv means the included snippet does not see any of the variables or functions you define in your snippet. Safety is our first goal! :-)