Created
April 22, 2022 16:43
-
-
Save mehdiyari/2ed8e54d4388b32200613e3c9548af07 to your computer and use it in GitHub Desktop.
This gist is part of meta-programming with kotlin articles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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