kcl-lib 0.2.147

KittyCAD Language implementation and tools
Documentation
1
2
3
4
5
6
7
8
9
use crate::ExecState;
use crate::KclError;
use crate::exec::KclValue;
use crate::execution::KclValueControlFlow;
use crate::std::Args;

pub async fn exit(_exec_state: &mut ExecState, _args: Args) -> Result<KclValueControlFlow, KclError> {
    Ok(KclValue::none().exit())
}