mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
9 lines
192 B
C
9 lines
192 B
C
#include <stdio.h>
|
|
#include "../wasmer.h"
|
|
|
|
int main()
|
|
{
|
|
wasmer_import_object_t *import_object = wasmer_import_object_new();
|
|
wasmer_import_object_destroy(import_object);
|
|
return 0;
|
|
} |