index
:
calico
main
A compiled C-like toy language
Nic Gaffney
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
std.c
blob: 67a23c3e5029b9c57912606cccf8fac8e72ecf90 (
plain
)
1
2
int
subtract
(
int
a
,
int
b
)
{
return
a
-
b
;
}
int
add
(
int
a
,
int
b
)
{
return
a
+
b
;
}