make code less lines

  • Thread starter Thread starter Brettjg
  • Start date Start date
B

Brettjg

I wonder if i can reduce these three lines to one. I know I can't use a comma
or a semi-colon. I have many repititions of these three lines and it would be
nice to save some space. Regards, Brett

O_fore = 56
O_back = 60
O_grad = 3
 
Use a chart format:
--A----B----C----D--
1 ----fore--back--grad
2 O---56---60----3
3 P---44---55----4
4

etc...
 
O_fore = 56: O_back = 60: O_grad = 3
--
Jim Cone
Portland, Oregon USA



"Brettjg" <[email protected]>
wrote in message
I wonder if i can reduce these three lines to one. I know I can't use a comma
or a semi-colon. I have many repititions of these three lines and it would be
nice to save some space. Regards, Brett

O_fore = 56
O_back = 60
O_grad = 3
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top