Dust is a programming language inspired by Rust and targeted to run on browsers and on JavaScript engines. The runtime works by translating Dust code to JavaScript. The following examples demonstrate the language basics. Hello World! let msg = "hello world!"; //console::log(msg); alert(msg); The keyword let is used to declare a variable. The type of variable is inferred. In the example, using msg