1 /** 2 * An emphasised class. 3 * 4 * _This class [Bar] is awesome._ 5 * 6 * _Even more awesomer is the function [Bar.foo]_ 7 * 8 * _[Bar.hello] is also OK_ 9 */ 10 class Bar { foonull11 fun foo() {} hellonull12 fun hello() {} 13 } 14