aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorVincenzo Maffione <[email protected]>2016-10-23 15:58:41 +0200
committerVincenzo Maffione <[email protected]>2016-10-23 15:58:41 +0200
commitcf63ba6fc8317f43dd5c8a7920296b4ba76d8c97 (patch)
tree6ec18f4ec4f79c5eccc6374cabe7078fc61d6a01 /main.py
parentb7afda52a74c7ce07e23978445eac17d028febbe (diff)
downloadrumba-cf63ba6fc8317f43dd5c8a7920296b4ba76d8c97.tar.gz
rumba-cf63ba6fc8317f43dd5c8a7920296b4ba76d8c97.zip
libarcfire: add basic classes and test code
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100755
index 0000000..88effbb
--- /dev/null
+++ b/main.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python
+
+# An example script using libarcfire.py
+
+from libarcfire import *
+
+
+exp = Experiment("prova")
+exp.dif_add(ShimEthDIF("300", 0, ["a", "b", "c"]))
+
+print(exp)
+
+exp.run()