ldmud/test/t-python/sefun.c
Alexander Motzkau 25ab0f48bc Added separate Python types for various closure types
Added LfunClosure, (Simul)EfunClosure, (Unbound/Bound)LambdaClosure and
OperatorClosure types for Python.
2025-07-07 22:14:05 +02:00

6 lines
178 B
C

#pragma save_types, rtt_checks, lightweight, clone, save_local_names
nomask string* testsefun(int value)
{
return ({ to_string(value), program_name(previous_object()) });
}