/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/python/contract/runme.py
21 строка
368 B
William S Fulton
Modify examples to be both Python 2 and 3 compatible
15 авг 2020, 18:46
15 авг 2020, 18:46
89bee6a
Код
Авторство
О чём код?
# file: runme.py import example # Call our gcd() function x = 42 y = 105 g = example.gcd(x, y) print("The gcd of %d and %d is %d" % (x, y, g)) # Manipulate the Foo global variable # Output its current value print("Foo = %s" % example.cvar.Foo) # Change its value example.cvar.Foo = 3.1415926 # See if the change took effect print("Foo = %s" % example.cvar.Foo)