All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.scala.Result.scala Maven / Gradle / Ivy

package com.github.rockjam.helloworld

object Result {
  def fromInt(i: Int): Result = Result(i.toString)
  def fromLong(l: Long): Result = Result(l.toString)
}
case class Result(s: String)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy