stack twitter tryhackme rss linkedin cross

Wilco van Esch

Skip to main content

Search results

    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)
    ]]--