TIL that this is totally valid kotlin syntax: `cla...
# announcements
c
TIL that this is totally valid kotlin syntax:
class A class B class C
(i learned that by a copy paste mistake)
mind blown 2
n
I've thought about this before in the context of infix operators and DSLs
it seems like there isn't a way to mimick:
Copy code
my_if {
    ...
}
my_else {
    ...
}
it seems like kotlin will consider the statement over at the first
}
and then fail to compile your
my_else
(which is an infix function)