• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Why did the token cross the road?
3  *
4  * # Because it was Beer o'clock @ [The.bar]
5  *
6  * ## But __waz *\[sic\]* [it](isitbeeroclock.com)__ really?
7  *
8  * ### [The.bar] has? [The.foo]est drinks ever!
9  *
10  * #### _[The.kotlinz] is [The.bestests], [Bar.none]_
11  *
12  * ##### So many lame code "puns" (in) [The.house]
13  *
14  * ###### End of the?? [Bar.line]! - we need to go back!
15  */
16 class The {
17     object Bar {
nonenull18         fun none() {}
19     }
20 
barnull21     fun bar() {}
foonull22     fun foo() {}
bestestsnull23     fun bestests() {}
kotlinznull24     fun kotlinz() {}
housenull25     fun house() {}
linenull26     fun line() {}
27 }
28