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.

10 lines
137 B

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