BLOG

BE A COOL GUY

Piglet Part2 - Tutorial

A language named Piglet to describe the flow chart

Tutorial Piglet is an extremely simple language to describe flow. 1. Don’t Support No DataType and Variable No Operator And of cource No Function 2. What Piglet Support 2.1 Grammar 2....

Piglet Part1 - Examples

A language named Piglet to describe the flow chart

Examples An Simple Example init; if (failure) { has error; break; } submit; An Example with Chinese 初始化; if (出错) { 出错啦; break; } 提交; An Example of switch-case switch (num) { ...