Exemple #1
0
    void Start()
    {
        if (initCode.IsZull())
        {
            initCode = defaultInitCode;
        }
        try {
            RT.load("minibuffer/lisp/core");

            RT.var("minibuffer.lisp.core", "repl-setup")
            .invoke();
        } catch (System.Exception e) {
            Debug.LogWarning("Error loading minibuffer.lisp.core.");
            Debug.LogException(e);
        }
        EvalExpression("(do " + initCode + ")");
        Minibuffer.Register(this);
    }