VocabularypythonInputsquot | a quotation with stack effect ( args kw -- ret ) |
OutputsWord descriptionCreates a python-compatible alien callback from a quotation.
ExamplesThis is how you create a callback which returns the double of its first positional parameter:
USING: python ;
: double-fun ( -- alien ) [ drop first 2 * ] quot>py-callback ;
Definition