Write a snippet of code—not a function—that:
mark
of type Char
and initializes it to A
grade
of type Double
and initializes it to 98.8age
of type Int
and initializes it to 42summerIsOver
of type Boolean
and initializes it to trueNote that because Kotlin performs type inference, you can and should solve this problem without explicitly specifying any types.