use worked::*;
#[wasm_bindgen(start)]
pub async fn start() {
for i in 0..20 {
factorial(
i.clone(), // <-- Function input
move |o| gloo::console::log!(&format!("{i}! = {o}")) // <-- Callback
).await; // <-- Await the spawning of the worker
}
}
#[worked("/pkg/wasm_workers.js")] // <-- Absolute path to your main wasm_bindgen export
pub fn factorial(n: i64) -> i64 { // <-- Functions can only take one input
f(n)
}
#[wasm_bindgen]
pub fn f(n: i64) -> i64 {
match n {
0 => 1,
_ => n * f(n - 1),
}
}
-
Notifications
You must be signed in to change notification settings - Fork 0
Wasm workers made ... uh .. easier
License
tascord/worked
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Wasm workers made ... uh .. easier
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published