程式碼執行Playground
本系統整合 JDoodle API,讓你可以直接在 HKTRPG 執行多種程式語言。
支援語言及用法
.code c
#include <stdio.h>
int main() {
printf("Hello C\n");
return 0;
}.code cpp
#include <iostream>
int main() {
std::cout << "Hello C++" << std::endl;
return 0;
}Last updated