Skip to content
This repository was archived by the owner on Feb 5, 2024. It is now read-only.

Languages

gedorinku edited this page Mar 9, 2018 · 3 revisions

目次

使用可能な言語の取得

リクエスト

GET /languages

レスポンス

200 OK
Content-Type: application/json
[
  {
    "id": 1,
    "displayName": "C++17 (GCC 7.2.0)",
    "compileCommand": "g++ -w -lm -std=gnu++17 -O2 -o main.o main.cpp",
    "execCommand": "./main.o"
  },
  {
    "id": 2,
    "displayName": "C++11 (GCC 7.2.0)",
    "compileCommand": "g++ -w -lm -std=gnu++11 -O2 -o main.o main.cpp",
    "execCommand": "./main.o"
  },
  {
    "id": 3,
    "displayName": "C11 (GCC 7.2.0)",
    "compileCommand": "gcc -w -lm -std=gnu11 -O2 -o main.o main.c",
    "execCommand": "./main.o"
  }
]
Clone this wiki locally