Suppose I have a procedure called foo
, which returns a ::float
which is meant to take the following arguments:
- A procedure taking two
::float
arguments. - A
::float
- Another
::float
How would I write an export
for that function in the module
part of the code? I have this so far:
(module bar
(export (foo::float 'something ::float ::float)))
What should 'something
be replaced by here?