Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 754 Bytes

File metadata and controls

14 lines (12 loc) · 754 Bytes

Development

Adding Language Support

When adding support for a new language, make sure to check the following things:

  • Add compiler/interpreter in the judging image.
  • Update the judging script.
  • Add a test submission in the echo sample problem.
  • Update the competition image.
    • Ensure that no compiler/interpreter is installed on the system.
    • Ensure that no source files exist in the image.
      • For example, to look for C files we could do: find / -type f -name '*.c'.
  • Add any required hints.