10 lines
292 B
C
10 lines
292 B
C
|
|
#ifndef PRINTING_H
|
||
|
|
#define PRINTING_H
|
||
|
|
|
||
|
|
#include <comet/cometlib.h>
|
||
|
|
|
||
|
|
ResultType(int64_t, objectPtr) impl_print(int64_t* args, CometVM* vm);
|
||
|
|
ResultType(int64_t, objectPtr) impl_println(int64_t* args, CometVM* vm);
|
||
|
|
ResultType(int64_t, objectPtr) impl_getline(int64_t* args, CometVM* vm);
|
||
|
|
|
||
|
|
#endif
|