@Doc("Creates a new thread and runs the function concurrently on it.")
public static class Run implements Intrinsic {
public Obj invoke(Context context, Obj left, Obj right) {
FnObj function = right.asFn();
Routine routine = new Routine(context, function);
routine.start();
return context.nothing();
}