mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
14 lines
256 B
C
14 lines
256 B
C
#include<stdio.h>
|
|
|
|
typedef int (*lua_callback_t)(int, int);
|
|
|
|
int closure_test(lua_callback_t callback) {
|
|
printf("%p\n", callback);
|
|
printf("%d\n", callback(12, 24));
|
|
|
|
return callback(12, 24) * 2;
|
|
}
|
|
|
|
int closure(int a, int b) {
|
|
return a+b;
|
|
}
|