1. (defun C:BreakAtPoint()
    2. (setvar "CMDECHO" 0)
    3. (command "break" (car (entsel)) (getpoint "\n指定打断点:") "@")
    4. (prin1)
    5. )