If you include code in a post like this --
It will be published (left justified) like this --(defun c:MyProgram ( / input )
;; get input from user
(setq input (getstring "nEnter input: "))
;; echo user's input
(princ (strcat "You entered <" input ">.\n"))
;; shhh
(princ)
)
Whereas if you enclose the code in code tags like this --
It will be published like this --(defun c:MyProgram ( / input )
;; get input from user
(setq input (getstring "nEnter input: "))
;; echo user's input
(princ (strcat "You entered <" input ">.\n"))
;; shhh
(princ)
)Much easier to read.