bevy_scriptum/assets/examples/js/function_params.js
Jaroslaw Konik 36cc907f0e
Some checks failed
Book / test (pull_request) Has been cancelled
Rust / build (3.4.4, map[os:ubuntu-latest]) (pull_request) Has been cancelled
Implement JavaScript runtime
2026-06-04 23:50:53 +02:00

4 lines
115 B
JavaScript

fun_without_params();
fun_with_string_param("hello");
fun_with_i64_param(5);
fun_with_multiple_params(5, "hello");