├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── helloworld-help.pd ├── helloworld-meta.pd └── helloworld.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/helloworld/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/helloworld/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/helloworld/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/helloworld/HEAD/README.md -------------------------------------------------------------------------------- /helloworld-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/helloworld/HEAD/helloworld-help.pd -------------------------------------------------------------------------------- /helloworld-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/helloworld/HEAD/helloworld-meta.pd -------------------------------------------------------------------------------- /helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/helloworld/HEAD/helloworld.c --------------------------------------------------------------------------------