1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-01-25 19:57:13 +00:00

initial import of python-console

This commit is contained in:
Miodrag Milanovic
2018-06-28 13:16:53 +02:00
parent 66670831b8
commit c63274342f
28 changed files with 2120 additions and 0 deletions

2
3rdparty/python-console/data/test.py vendored Normal file
View File

@@ -0,0 +1,2 @@
for i in range(1, 10):
print i

6
3rdparty/python-console/data/test2.py vendored Normal file
View File

@@ -0,0 +1,6 @@
for i in range(1, 10):
print i
for i in range(1, 10):
print i
print i

4
3rdparty/python-console/data/test3.py vendored Normal file
View File

@@ -0,0 +1,4 @@
for i in range(1, 10):
print i
for i in range(1, 10):
print i

4
3rdparty/python-console/data/test4.py vendored Normal file
View File

@@ -0,0 +1,4 @@
for i in range(2):
for j in range(3):
print j
print i

3
3rdparty/python-console/data/test5.py vendored Normal file
View File

@@ -0,0 +1,3 @@
for i in range(2):
for j in range(3):
print i, j