我剛寫的函數添加寄存器爲二進制加法的球拍兩個n位寄存器(使用位添加功能作爲輔助): (define (bit-add x y c)
(values (bitwise-xor x y c) (bitwise-ior (bitwise-and x y)
(bitwise-and x c)
(bitwise-and y c))))
我目前正試圖潛入球拍/方案一點。我有一個(X)REPL實例在我的編輯器旁邊運行,這非常有助於我探索該語言。但是,我似乎無法找到一個XREPL命令或宏(或其他)來顯示函數的源代碼。 所有需要的部分似乎有: XREPL的describe命令知道該文件: -> ,describe string-join
; `string-join' is a bound identifier,
; defined
我試圖確定在Windows的.rackettrc位置使用以下命令:爲球拍文檔中指定 (find-system-path 'init)
。但是,我不斷收到錯誤消息 expects argument of type <system-path-symbol>: given 'init.
這是一個球拍中的錯誤還是我做錯了什麼?