mirror of
https://github.com/janet-lang/janet
synced 2025-07-03 02:22:52 +00:00
8 lines
156 B
C
8 lines
156 B
C
#include <dst/dst.h>
|
|
|
|
int dst_init_(DstArgs args) {
|
|
DstTable *env = dst_env_arg(args);
|
|
dst_env_def(env, "pi", dst_wrap_real(M_PI));
|
|
return 0;
|
|
}
|