use shopify_function_wasm_api::Context;
#[cfg_attr(target_family = "wasm", export_name = "_start")]
fn main() {
shopify_function_wasm_api::init_panic_handler();
let mut context = Context::new();
context.log(&"a".repeat(995));
context.log(&"b".repeat(10));
}