tree-sitter-bash/corpus/control_flow.txt

18 lines
318 B
Plaintext
Raw Normal View History

2017-07-14 23:11:35 +00:00
====================================
While statements
====================================
while something happens; do
echo a
echo b
done
---
(program
(while_statement
(command (command_name) (argument))
(do_group
(command (command_name) (argument))
(command (command_name) (argument)))))