1use crate::{ExecState, KclError, exec::KclValue, execution::KclValueControlFlow, std::Args}; 2 3pub async fn exit(_exec_state: &mut ExecState, _args: Args) -> Result<KclValueControlFlow, KclError> { 4 Ok(KclValue::none().exit()) 5}