Replies: 2 comments 3 replies
-
Some thoughts about the library interface:
|
Beta Was this translation helpful? Give feedback.
2 replies
-
I've made a C language example, it works fine, the C header files are good #include <stdio.h>
#include <excelize/excelize.h>
int main() {
GoInt f = NewFile();
NewSheet(f, "Sheet1");
SetCellStr(f, "Sheet1", "A1", "Hello World!");
SaveAs(f, "test.xlsx", NULL);
Close(f);
return 0;
} build command: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Beta Was this translation helpful? Give feedback.
All reactions