Skip to content

Instantly share code, notes, and snippets.

@pencelab
Created May 18, 2021 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pencelab/17d218033944c18b92f7142946865046 to your computer and use it in GitHub Desktop.
Save pencelab/17d218033944c18b92f7142946865046 to your computer and use it in GitHub Desktop.
@ShapeDsl
abstract class ShapeBuilder {
private companion object {
const val DEFAULT_CHAR = '*'
}
var char = DEFAULT_CHAR
var lines = 0
abstract fun build(): Shape
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment