Upload files to "java/expression"

This commit is contained in:
2026-04-13 10:51:24 +03:00
parent 62c0366b8d
commit 1ece8443a0
4 changed files with 489 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package expression;
/**
* @author Georgiy Korneev (kgeorgiy@kgeorgiy.info)
*/
public interface ToMiniString {
default String toMiniString() {
return toString();
}
}