Hi there, first post.
I am new to AutoCad AutoLisping and i only began to read Mr. Rammage's tutorial. However, I'm testing some coding while i am reading it.
Here is one thing i would like to get done;
I would like to insert thoses 3 variables (a b c) into an alert message as in...confirming the information.
(defun c:test1 ( / a b c)
(setq a (getstring T "\nWhat is your full name?:"))
(setq b (getstring T "\nName of the project?:"))
(setq c (getreal "\nTime worked on it?(format exemple:2.5):"))
(alert "(!a !b !c)") ; this part is not good.
)
As you probably know, The alert message show me (!a !b !c), i tried many things and i will continue working on it while i'm waiting for an answer here.
Let me know what needs to be done,
Thank you all in advance.