Files
void-static-website/article/02-tech.txt
2024-11-29 19:52:52 +01:00

21 lines
291 B
Plaintext

TITLE:A technical article
DATE:2015 April 9th
AUTHOR:Jo
This Python code is really good:
def good():
a = 1
b = 2
c = a + b
return None
This one is *even better:*
def better():
a = 128
b = 256
c = a * b
return None