mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-02 18:31:05 +00:00
* Make console output "Hello from Rust!" The HTML says the console would output Hello from Rust!, but instead it outputs Hello, World! This is a proposed fix. * Output "Hello from Rust!" The HTML says the console would output "Hello from Rust!" but instead it outputs "Hello, World!". This is a proposed fix.
22 lines
309 B
JavaScript
22 lines
309 B
JavaScript
export function name() {
|
|
return 'Rust';
|
|
}
|
|
|
|
export class MyClass {
|
|
constructor() {
|
|
this._number = 42;
|
|
}
|
|
|
|
get number() {
|
|
return this._number;
|
|
}
|
|
|
|
set number(n) {
|
|
return this._number = n;
|
|
}
|
|
|
|
render() {
|
|
return `My number is: ${this.number}`;
|
|
}
|
|
}
|