blob: 633bf414bdb8ece4c814cefdb93f2e1b6d51530e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import kotlin.reflect.KClass
/**
* This annotation indicates what exceptions should be declared by a function when compiled to a JVM method.
*
* Example:
*
* ```
* Throws(IOException::class)
* fun readFile(name: String): String {...}
* ```
*/
class Throws
/**
* Check output of
* ``` brainfuck
* ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
* ```
*/
class ItDoesSomeObfuscatedThing
|