Intro
Let's see how this thing works...
// Test class
class Test {
value: number = 0;
constructor() {
super();
}
increment() {
this.value += 1;
}
decrement() {
this.value -=1;
}
getValue() {
return this.value;
}
}
const test = new Test();
test.increment();
console.log(test.getValue()); # 1Just a random post to test if DB connection and syntax highlight works...
Also test if image linking works...
It seems so...