FUDI (Puredata messenging protocol)

Created: 2024-07-23T21:11:51-05:00

Return to the Index
This card pertains to a resource available on the internet.

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+
}