Commit 31/07/2025

This commit is contained in:
2025-07-31 11:43:38 +07:00
parent 50f7e755da
commit 126172aa73
8 changed files with 289 additions and 13 deletions

10
src/somecodes/Codes.kt Normal file
View File

@@ -0,0 +1,10 @@
package somecodes
class Codes {
companion object{
fun ValidString(s : String?) : Boolean {
return s != null && s.isNotEmpty() && s.isNotBlank()
}
}
}