8 lines
163 B
Rust
8 lines
163 B
Rust
|
fn main() {
|
||
|
substrate_wasm_builder::WasmBuilder::new()
|
||
|
.with_current_project()
|
||
|
.import_memory()
|
||
|
.export_heap_base()
|
||
|
.build()
|
||
|
}
|