Compare commits

..

2 commits

Author SHA1 Message Date
ava@asterix
38d006a06c Merge branch 'main' of https://forge.bexus.org/Chaos/BGO 2024-04-22 08:46:22 +02:00
ava@asterix
c7f2abd92d ADD test.py 2024-04-11 09:49:24 +02:00

11
test.py Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Apr 10 13:16:52 2024
@author: ava
"""
a = [0,1,2]
a = a + [3,4]
print(a)