John Smith
john@example.com
#![no_main]
use libfuzzer_sys::fuzz_target;
fuzz_target!(|data: &str| {
let _ = kcl_lib::Program::parse(data);
});