cream-js 0.1.0

A lightweight compiler for modern web applications.
1
2
3
4
5
pub const NULL: &str = "null";

pub fn javascript_init_var(name: &str, value: &str) -> String {
    format!(";let {name}={value};")
}