test

A collection of boilerplate code and projects for testing ideas

Stars
13

TEST

A collection of boilerplate "test" programs and apps for various programming languages and frameworks.

Supports

Contribute

  1. Create an appropriately named directory.
  2. Add a build file (Makefile or other build file) if language is compiled.
  3. Add a file named test with appropriate file extension.
    • If the program can write to stdout, it must print "test" to stdout.
    • May also contain other common boilerplate code.
    • If the file is interpreted, it should begin with a #!/usr/bin/env ... and
      be executable (chmod +x).