diff options
author | Vincenzo Maffione <[email protected]> | 2016-10-23 15:58:41 +0200 |
---|---|---|
committer | Vincenzo Maffione <[email protected]> | 2016-10-23 15:58:41 +0200 |
commit | cf63ba6fc8317f43dd5c8a7920296b4ba76d8c97 (patch) | |
tree | 6ec18f4ec4f79c5eccc6374cabe7078fc61d6a01 /main.py | |
parent | b7afda52a74c7ce07e23978445eac17d028febbe (diff) | |
download | rumba-cf63ba6fc8317f43dd5c8a7920296b4ba76d8c97.tar.gz rumba-cf63ba6fc8317f43dd5c8a7920296b4ba76d8c97.zip |
libarcfire: add basic classes and test code
Diffstat (limited to 'main.py')
-rwxr-xr-x | main.py | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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() |