Init Void project

This commit is contained in:
2024-11-29 19:52:52 +01:00
commit 5fb1e058cd
17 changed files with 1806 additions and 0 deletions

20
article/02-tech.txt Normal file
View File

@@ -0,0 +1,20 @@
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