digraph fsm {
rankdir="LR"
f.write("digraph fsm "+\n+" {rankdir="LR"")
this gives me an error ? can someone tell me the exact formatting for this line ?




Posted 27 January 2012 - 03:27 PM
digraph fsm {
rankdir="LR"
f.write("digraph fsm "+\n+" {rankdir="LR"")
this gives me an error ? can someone tell me the exact formatting for this line ?
Posted 27 January 2012 - 03:37 PM
f.write("digraph fsm "+\n+" {rankdir="LR"")
f.write("digraph fsm \n {rankdir=\"LR\"")
Posted 27 January 2012 - 03:57 PM
