mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
16 lines
225 B
Python
16 lines
225 B
Python
# 15 lines, 10 code, 2 comments, 3 blanks
|
|
|
|
|
|
def add(x, y):
|
|
"""
|
|
Hello World
|
|
# Real Second line
|
|
Second line
|
|
"""
|
|
|
|
string = "Hello World #\
|
|
"
|
|
y += len(string)
|
|
# Add the two numbers.
|
|
x + y
|