Skip to content

Instantly share code, notes, and snippets.

@mehdiyari
Created April 22, 2022 16:43
Show Gist options
  • Save mehdiyari/2ed8e54d4388b32200613e3c9548af07 to your computer and use it in GitHub Desktop.
Save mehdiyari/2ed8e54d4388b32200613e3c9548af07 to your computer and use it in GitHub Desktop.
This gist is part of meta-programming with kotlin articles
// Declare Annotation in Kotlin
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.SOURCE)
@Repeatable
annotation class HelloWorldAnnotation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment