mirror of
https://github.com/lxsang/antd-lua-plugin
synced 2024-12-29 10:48:21 +01:00
7 lines
136 B
C
7 lines
136 B
C
#include <stdio.h>
|
|
|
|
void greet(const char* msg, float num, int sint, char c)
|
|
{
|
|
printf("%s: '%f' '%d' '%c'\n", msg, num, sint, c);
|
|
}
|