Annotations are means of attaching metadata to code. To declare an annotation, put the
annotation
modifier in front of a
class:
annotation class Strippable
Annotations can have meta-anotations:
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.VALUE_PARAMETER, A...