Any tips on making a header and footer with Kotlin...
# intellij
d
Any tips on making a header and footer with Kotlin and IntelliJ
s
What’s the context? Making a website? An Android app? Or are you talking about UI/plugins for IntelliJ itself?
d
Adding it to a website
a
what have you tried to do, and what problems did you run into?
g
Copy code
fun mkHeaderAndFooter() = """
  <header>
    <p>I am in the header</p>
  </header>
  <footer>
    <p>I am in the footer</p>
  </footer>
"""
What do I win?