mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-10 01:18:29 +03:00
16 lines
234 B
C
16 lines
234 B
C
#ifndef BANANA_H
|
|
#define BANANA_H
|
|
|
|
// This is an example external struct
|
|
typedef struct {
|
|
double price;
|
|
int size;
|
|
} Banana;
|
|
|
|
// This is an external function that can be registered
|
|
int magic() {
|
|
return 123456789;
|
|
}
|
|
|
|
#endif
|