mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 01:52:11 +03:00
01a44e436d
* Big refactor in process * remove unnecessary functions from the prelude * remove comments
11 lines
134 B
C
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_
|