You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
168 B

#ifndef IO_H
#define IO_H
#include "c2logic/builtins.h"
void println(char* s) {
print(s);
print("\n");
}
void printdln(double s) {
printd(s);
print("\n");
}
#endif