Skip to content

Instantly share code, notes, and snippets.

View tcarmelveilleux's full-sized avatar

Tennessee Carmel-Veilleux tcarmelveilleux

View GitHub Profile
@tcarmelveilleux
tcarmelveilleux / snippet.kt
Created April 2, 2023 13:55 — forked from renaudcerrato/snippet.kt
Kotlin Interfaces
interface A {
val a: Int // abstract
val b: Int // abstract
fun foo() // abstract
fun bar() {
// optional body
}
}
interface B { ... }