index
:
adyxax/gofunge98
master
a Funge-98 interpreter written in go
Julien Dessaux
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
pkg
/
stack
/
min.go
blob: e97aaed72c0f7d21f887c5b8b6dda608c9f4ebac (
plain
)
1
2
3
4
5
6
7
8
package stack func min(a, b int) int { if a < b { return a } return b }