FUDI (Puredata messenging protocol)
Created on 2024-07-23T21:11:51-05:00
Simple text format created for PureData.
Syntax
Syntax provided as an Ohm PEG parser.
FUDI {
whitespace = ' ' | '\t' | '\n'
escaped_whitespace = '\\' whitespace
atom_char = escaped_whitespace | (~whitespace any)
atom = atom_char+
message = atom+ ';'
packet = message+
}