1 unstable release

0.1.2 Oct 3, 2022
0.1.1 Oct 2, 2022
0.1.0 Oct 2, 2022

#20 in #normal

MIT license

5KB
99 lines

JavaScript syntax implementation library

likejs::var!(var str_text = "Hello, World!".to_string());

let f = likejs::arrow!(() => {"Hello, World!".to_string()});
let f = likejs::arrow!(() => "Hello, World!".to_string());
likejs::normal_function!(function add(a, b){
   a+b
});
let int = add(12,13);

No runtime deps