mirror of
https://github.com/anoma/juvix.git
synced 2024-12-26 09:04:18 +03:00
1260853583
* Closes #1653 The running time improvement is 20-30% on benchmarks dominated by closure calls.
11 lines
164 B
C
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;
|
|
}
|