다음은 대화형 모드(interactive mode)에서 진법 변환(radix conversion)하는 Common Lisp 소스 코드이다. 메뉴는 주메뉴 Command: (S)et radix, (A)bout, (Q)uit or E(x)it 와 부메뉴 SubCommand: 'main()' to goto Main menu, 'exit()' or 'quit()' to exit 로 구성되어 있으며, 진법 변환의 핵심은 아래 소스의 52째 줄과 53째 줄에 있는 (setf val (parse-integer s :radix srcRdx)) (setf ret (write-to-string val :base destRdx)) 이다. 지원되는 진법은 2진법에서 36진법까지이다. ;; Filename: convertRad..