https://kotlinlang.org logo
j

julioyg

12/27/2017, 1:44 PM
🤔 you could use a script to count how many kotlin files you have in your project
find . -type f -iname \*.kt | sed 's/.*\.//' | sort | uniq -c
and do the same for the java files, no?