独自要素テスト
0
0
9
2024/9/3(火) 21:28:59.565
ID: f644b189-f70c-4bca-840c-1ecbf7a3fecf独自要素テスト
JS
console.log("Hello World!")
codeブロック
test
2024/9/3(火) 21:28:59.565
追加テスト
const a = "Hello World!";
console.log(a);
2024/9/3(火) 22:0:23.85
再テスト
const a = 1
const b = 2
console.log(a + b)
2024/9/3(火) 22:28:0.272
4:
名無し
ID: wPEZx5RPQA
Lv.1
point: 0/20他言語もテスト
C++
#include <iostream>
using namespace std;
int main(){
cout << "Hello world." << endl;
return 0;
}
JAVA
class Hello {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
2024/9/3(火) 22:51:51.417
5:
名無し
ID: wPEZx5RPQA
Lv.1
point: 0/20ファイルアップロードと同時テスト
print("HELLO WORLD!")
2024/9/3(火) 22:54:52.68
6:
名無し
ID: wPEZx5RPQA
Lv.1
point: 0/20
console.log("タイムライン用テスト");
2024/9/3(火) 23:4:55.720
7:
名無し
ID: wPEZx5RPQA
Lv.1
point: 0/20
console.log("HELLO WORLD");
2024/9/3(火) 23:45:22.7
8:
名無し
ID: I66iqdrEor
Lv.0
point: 1/10test
aiueo
#include <iostream>
using namespace std;
int main(){
cout << "Hello world." << endl;
return 0;
}
class Hello {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
2024/9/4(水) 17:28:29.780