/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/ruby/simple/runme.rb
21 строка
355 B
William S Fulton
Executable bits and shebang fixes
16 фев 2014, 21:30
16 фев 2014, 21:30
b170788
Код
Авторство
О чём код?
# file: runme.rb require 'example' # Call our gcd() function x = 42 y = 105 g = Example.gcd(x,y) printf "The gcd of %d and %d is %d\n",x,y,g # Manipulate the Foo global variable # Output its current value print "Foo = ", Example.Foo, "\n" # Change its value Example.Foo = 3.1415926 # See if the change took effect print "Foo = ", Example.Foo, "\n"