2016-01-21 10:33:15 星期四
1. 入门案例
st=>start: Start op=>operation: Your Operation sub=>subroutine: My Subroutine cond=>condition: Yes or No? io=>inputoutput: catch something... e=>end: End st->op->cond cond(yes)->io->e cond(no)->sub(right)->op
2. 语法
流程图的语法整体分为两部分,第一段用来定义流程图元素,第二段用来连接流程图元素,指定流程图的执行走向。
tag=>type: content:>url
说明 :
连接流程图元素阶段的语法就简单多了,直接用 ->
来连接两个元素,需要注意的是condition类型,因为他有yes和no两个分支,所以要写成
cond(yes)->io->e cond(no)->sub(right)->op