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

5 years ago
5 years ago
5 years ago
5 years ago
  1. #ifndef IO_H
  2. #define IO_H
  3. #include "c2logic/builtins.h"
  4. void println(char* s) {
  5. print(s);
  6. print("\n");
  7. }
  8. void printdln(double s) {
  9. printd(s);
  10. print("\n");
  11. }
  12. #endif