#!/usr/bin/env ruby # This code comes from http://ruby-it.org/pages/Convenzioni+non+rispettate # Check the page for copyright notice and explanations a="HELLO WORLD" puts a.downcase # restituisce "hello world" puts a # restituisce "HELLO WORLD" puts a.downcase! # restituisce "hello world" puts a # restituisce "hello world" a=2 puts a.power!(3) # restituisce 8 puts a # restituisce 2