TurboWarp/extensions

[IDEA] Add Timeutils V1 (I don't have git so this has to be a issue)

Closed this issue · 1 comments

class HelloWorld {
getInfo() {
return {
id: 'helloworld',
name: 'It works!',
blocks: [
{
opcode: 'hello',
blockType: Scratch.BlockType.REPORTER,
text: 'Hello!'
}
]
};
}

hello() {
return 'World!';
}
}

Scratch.extensions.register(new HelloWorld());

Wrong Code