fork download
  1. CONST = "A CONST"
  2. CONST = "NOT A CONST"
  3. puts CONST
Success #stdin #stdout #stderr 0s 28216KB
stdin
Standard input is empty
stdout
NOT A CONST
stderr
prog.rb:2: warning: already initialized constant CONST
prog.rb:1: warning: previous definition of CONST was here