8 lines
107 B
Python
8 lines
107 B
Python
|
from sacred import Experiment
|
||
|
|
||
|
ex = Experiment()
|
||
|
|
||
|
@ex.automain
|
||
|
def my_main():
|
||
|
print('Witaj świecie!')
|