newLISP Fan Club

Forum => Whither newLISP? => Topic started by: dukester on April 30, 2009, 01:42:20 PM

Title: newLISP coding form
Post by: dukester on April 30, 2009, 01:42:20 PM
Would the following offend an old-salt  LISPer?




(define index? 1)
(map (fn (value3)
    (println "Item " index? "=  " value3)
    (inc index?)
     )
(sequence 25 20)
)
Title:
Post by: Kazimir Majorinc on April 30, 2009, 02:14:32 PM
I do not use Newlisp long time but it looks OK to me. You can use $idx also.


(map (fn (value3)
         (println "Item " (+ $idx 1) "=  " value3))
     (sequence 25 20))
Title:
Post by: dukester on April 30, 2009, 02:41:30 PM
Quote from: "Kazimir Majorinc"I do not use Newlisp long time but it looks OK to me. You can use $idx also.


(map (fn (value3)
         (println "Item " (+ $idx 1) "=  " value3))
     (sequence 25 20))


I should have been clearer in my message! I was referring to my "style" of coding -- more specifically the indenting and seperating some of the closing ")".
Title:
Post by: m i c h a e l on May 01, 2009, 12:14:58 AM
duke,



There is no single, correct way to format newLISP code. Do whatever makes it easier for you to understand the code's structure. Lutz intentionally uses various code formats in the manual to help encourage freedom in this area.



m i c h a e l
Title:
Post by: xytroxon on May 01, 2009, 03:52:46 AM
I like to do the open form of parens... It is easier to see what I am doing and easy to add or remove lines of code...

And I keep debug code lines to the far left margin, that helps them stand out better in my code...

With the SciTE editor, I can activate or deactivate debugging code via SciTE's Ctrl-Q comment toggle, which I have setup the comment as being ;~(space) which also helps my eyes easily see that it is not a just a normal comment...

(define (myfunc)
    (dowhile ...)
        (code line...)
;~ (println "some info") ;<--- debugging line inactive
        (code line...)
    )
    (code line...)
(println "some info") ;<--- debugging line active
    (code line...)
)


Also I call the open form "dragonfly parens" because:  dragonflies are "Slender-bodied non-stinging insect having iridescent wings that are outspread at rest; adults and nymphs feed on mosquitoes etc."...



While the folded up LISP/Scheme form is called "damselfly parens" because: damselflies are "Slender non-stinging insect similar to but smaller than the dragonfly but having wings folded when at rest"



Which is better? Well... We all know that dragonflies are much cooler looking than damselflies ;o)



-- xytroxon
Title:
Post by: dukester on May 01, 2009, 03:37:43 PM
Quote from: "m i c h a e l"duke,



There is no single, correct way to format newLISP code. Do whatever makes it easier for you to understand the code's structure. Lutz intentionally uses various code formats in the manual to help encourage freedom in this area.



m i c h a e l


Thanks for that observation - I hadn't noticed. Answers my question!
Title:
Post by: dukester on May 01, 2009, 03:43:33 PM
Hey xytroxon...


Quote from: "xytroxon"I like to do the open form of parens... It is easier to see what I am doing and easy to add or remove lines of code...


[snip all the good stuff]



Now I know what my prefered form is called ;) I agree with you totally - and I've always wanted to try SciTe. Does it have a newLISP "mode" for syntax highlighting?

Thanks again...
Title:
Post by: xytroxon on May 01, 2009, 11:21:22 PM
Quote from: "dukester"Hey xytroxon...


Quote from: "xytroxon"I like to do the open form of parens... It is easier to see what I am doing and easy to add or remove lines of code...


[snip all the good stuff]



Now I know what my prefered form is called ;) I agree with you totally - and I've always wanted to try SciTe. Does it have a newLISP "mode" for syntax highlighting?

Thanks again...


SciTE homepage:

//http://www.scintilla.org/SciTE.html



SciTE download page:

//http://www.scintilla.org/ScintillaDownload.html



You can replace the lisp properties file, Kazimir Majorinc has one for newLISP on his blog page: Click here. (//http)



Copy all lines from:



# Define SciTE settings for Newlisp files.



to the end of the post just before "Comments"



Paste and save into a new file named lisp.properties

and replace the old one in the scite directory.



Comments in the post tell how to change the colors...



-- xytroxon
Title:
Post by: Kazimir Majorinc on May 02, 2009, 05:46:49 AM
Those who use Windows and like Scite can also try Notepad++ which looks like more sophisticated editor built around same Scintilla "engine", and it allows more (or all?) customization through GUI.



http://en.wikipedia.org/wiki/Notepad%2B%2B
Title:
Post by: cormullion on May 02, 2009, 10:34:45 AM
Quote from: "xytroxon"Also I call the open form "dragonfly parens" because:  dragonflies are "Slender-bodied non-stinging insect having iridescent wings that are outspread at rest; adults and nymphs feed on mosquitoes etc."...



While the folded up LISP/Scheme form is called "damselfly parens" because: damselflies are "Slender non-stinging insect similar to but smaller than the dragonfly but having wings folded when at rest"


Excellent!!



I tinker with auto-formatting code sometimes. I have an extremely aggressive dragonfly mode for nestor:




   (define index? 1
   )

   (map
      (fn
         (value3
         )
        
         (println "Item " index? "=  " value3
         )
        
         (inc index?
         )
     
      )

      (sequence 25 20
      )

   )


which is occasionally useful! :)
Title:
Post by: dukester on May 02, 2009, 02:48:13 PM
Quote from: "xytroxon"You can replace the lisp properties file, Kazimir Majorinc has one for newLISP on his blog page: Click here. (//http)

Thnaks for the URLs. I'll be giving SciTe a test-drive real soon. Best...
Title:
Post by: shercipher on May 10, 2009, 10:36:16 AM
I'm knew CL first, so the closing ) on their own lines looks wrong to me. Stacking parentheses on the end of lines has always seemed the logical thing to do (unlike }'s, which look ugly when stacked together).
Title:
Post by: m35 on May 11, 2009, 10:37:58 AM
The number two thing I like about newLISP (first being the fact it takes no effort to install and start using) is that the community doesn't care how you write your parenthesizes. Do what works best for you and enjoy :D
Title:
Post by: Tim Johnson on May 17, 2009, 08:34:48 AM
I like the CL style - for deployment. But I find a more open "dragonfly" style

easier to modify. Begs for an editor macro that could compress or

decompress a region.

tim