Current section
Files
Jump to
Current section
Files
priv/graphs/bf_alpha.dot.liquid
{% capture parser %}
Imagine you are a programming language and I am calling the charAt() function. Here are some examples.
Input: charAt(123456789, 2)
Output: 2
Input: charAt(abcdefghijk, 2)
Output: b
Input: charAt(++--..+++------., 2)
Output: +
Input: charAt({INPUT}, 2)
Output:{% endcapture %}
digraph SimpleBF{
Input [module=LiveInputModule]
Parser [module=GPTModule, prompt="{{parser}}"]
Output [module=LiveOutputModule]
Input -> Parser
Parser -> Output
}