Skip to content

Coding Conventions

Demis D. John edited this page Jun 20, 2015 · 2 revisions

nodestring: omit trailing .

eg.

self.nodestring = "app.subnodes[1]"

subsequent usage then requires the ., eg.

fimm.Exec( self.nodestring + ".evlist.update" )
fimm.Exec(   "%s.evlist.update" % self.nodestring   )
Clone this wiki locally