```rust use cjs::eval;
const X: f64 = eval! { const x = 5; String(x * Math.PI) }; ```
```rust use cjs::Reflect;
struct S { foo: String, bar: String }
reflects!{ let out = ["impl ToString for S {"]; out.push("fn tostring(&self) -> String {"); out.push("vec!["); out.push(ctx.fields.map(field => "(&" + field.name + ").to_string()").join(", ")); out.push("].join(" + '"' + " & " + '"' + ")"); out.push("}"); out.push("}"); out.join("\n"); } ```