Search found 3 matches

by ericsm
Fri Apr 14, 2006 12:06 am
Forum: newLISP newS
Topic: why don't this work?
Replies: 2
Views: 3121

why don't this work?

why doesn't the following work?

(define (addcustomer )
(set 'namee (read-line))
(set 'street (read-line))
(push '((namee) (street)))customer)

The part that isn't working is: (push '((namee) (street)))customer)
by ericsm
Thu Apr 13, 2006 1:26 pm
Forum: newLISP newS
Topic: How do you get it to put buttons on one line
Replies: 2
Views: 3421

thanks HPW
by ericsm
Thu Apr 13, 2006 1:06 pm
Forum: newLISP newS
Topic: How do you get it to put buttons on one line
Replies: 2
Views: 3421

How do you get it to put buttons on one line

Hello, I am very new to Newlisp. I am trying to learn Newlisp and was trying to make a calculator program. I was wondering how to I could get tk to diplay all the buttons on one line instead of putting the buttons on a new line? Here is my code: (define (calc) (tk "toplevel .mywin") (tk "button .myw...