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

com.madgag.sample.gslrw.Emphasiser.scala Maven / Gradle / Ivy

There is a newer version: 1.0.14-PREVIEW.feature1.2024-06-26T1201.254d3e67
Show newest version
package com.madgag.sample.gslrw

trait Emphasiser {
  def emphasise(s: String): String
}

object Emphasiser {
  val Sardonic = new Emphasiser {
    override def emphasise(s: String): String = s"_${s}_"
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy