Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created October 29, 2010 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igaiga/652886 to your computer and use it in GitHub Desktop.
Save igaiga/652886 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
class C
X = 12
def set_x(arg)
X = arg #←ここでエラー "5: dynamic constant assignment"
end
end
c = C.new
c.set_x(34)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment