stack twitter tryhackme rss linkedin cross

Wilco van Esch

Skip to main content

Search results

    This article is human-generated. Sometimes I use em dashes. Sometimes I even write coherent sentences. Everything about this text, good and bad, is me.

    Comment syntax across languages

    CSS

    /* Comment (in-line) */
    /*
    Comment (multi-line)
    */

    JavaScript, Java, Swift, C

    // Comment (in-line)
    /*
    Comment (multi-line)
    */

    Python

    # Comment (in-line)
    """
    Comment (multi-line)
    """

    Ruby

    # Comment (in-line)
    =begin
    Comment (multi-line)
    =end

    Lua

    -- Comment (in-line)
    --[[
    Comment (multi-line)
    ]]--