package com.example import net.thauvin.erik.readingtime.ReadingTime import java.io.File fun main(args: Array) { if (args.isNotEmpty()) { with(File(args[0])) { if (exists() && canRead()) { val rt = ReadingTime(readText()) rt.postfix = "minute to read" rt.plural = "minutes to read" println( "It will take ${rt.calcReadingTime()} ${ReadingTime.wordCount(rt.text)} words and " + "${ReadingTime.imgCount(rt.text)} images at ${rt.wpm} words per minute." ) } else { System.err.println("The file could not be read or found.") } } } else { System.err.println("Please specify a file as an argument.") } }