1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 01:52:11 +03:00
juvix/c-runtime/builtins/io.h
Jonathan Cubides 01a44e436d
Refactor (#1420)
* Big refactor in process

* remove unnecessary functions from the prelude

* remove comments
2022-08-03 13:20:40 +02:00

11 lines
134 B
C

#ifndef IO_H_
#define IO_H_
typedef int prim_io;
prim_io prim_sequence(prim_io a, prim_io b) {
return a + b;
}
#endif // IO_H_