index
:
book-exercises
master
Computing book exercise solutions.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Занимательное программирование
/
4
/
3_recursive
/
src
/
main
/
java
/
net
/
caraus
/
labyrinth
/
Point.java
blob: 6f70d4c6475df6b32ec7e6706535f420d8cdfca3 (
plain
)
1
2
3
4
package net.caraus.labyrinth; public record Point(int x, int y) { }