j
Size: a a a
DE
DE
DE
DE
S
python
print("Hello world.")
S
js
/**
* Show themes list
*/
bot.command('theme', (ctx) => isPrivateChat(ctx)
? ctx.replyWithMarkdown(
messages.themeChoose(ctx.state.user.theme),
Markup.keyboard(themesKeyboard(themes)).oneTime().resize().extra()
)
: ctx.reply(messages.themeGroup)
)
S
function A() { }
A.prototype.g = function () {
console.log("meh")
}
class B extends A{
e() {
}
}
class C extends B {
constructor(props) {
super(props);
}
aaa() {
}
}
let h = new C()
h.g()