Hello Hexo with Cactus

This is a test page

1
2
3
4
5
6
class Clazz {
hello(arg) {
console.log('Hello Javascript ' + arg);
}
}
new Clazz().hello(1503);
1
2
3
4
5
6
7
8
9
10
11
import dev1503.thechuan1503

class Clazz (val num: Int = 1503) {
fun hello() {
println("Hello Kotlin " + num)
}
}

fun main(val args: String[]) {
Clazz(1234).hello()
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import android.util.Log

class Main {
class Clazz {
public static void hello() {
Log.i("Main", "Hello Java");
}
}

public static int main(String[] args) {
new Clazz().hello();
return 0;
}
}
1
2
print('Hello Godot 4.6')
# No highlight adaptation