Hassaan
10/18/2023, 12:49 PMfun printOctAndHex(value: Int) {
print("%#o *%<#x*".format(v))
}
my question is where to find this in documentation ? where is it mentioned ? and
how to know about such similar things?
this question may be naive to you and sorry for that in advance but i don’t quite get itCLOVIS
10/18/2023, 12:56 PMFormatter
class (CTRL F %<
): https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.htmlKlitos Kyriacou
10/18/2023, 2:27 PM