1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-26 09:04:18 +03:00
juvix/tests/runtime/positive/test007.c
Łukasz Czajka 1260853583
Improve closure calls in the runtime (#2396)
* Closes #1653 

The running time improvement is 20-30% on benchmarks dominated by
closure calls.
2023-09-29 14:20:00 +02:00

11 lines
164 B
C

/* Prologue and epilogue */
#include <juvix/api.h>
int main() {
JUVIX_PROLOGUE(3);
juvix_result = make_smallint(789);
JUVIX_EPILOGUE;
return 0;
}