Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8971143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T17:53:16+00:00 2026-06-15T17:53:16+00:00

I am trying to write a closure in Ruby. This is the code written

  • 0

I am trying to write a closure in Ruby. This is the code written in Python:

def counter():
    x = 0
    def increment(y):
        nonlocal x
        x += y
        print(x)
    return increment

Is there a “nonlocal” equivalent in Ruby so I can access and make changes to the variable x from inside increment?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T17:53:17+00:00Added an answer on June 15, 2026 at 5:53 pm

    The nonlocal keyword tells Python which variables to capture. In Ruby, you don’t need such a keyword: all variables are captured unless explicitly mentioned otherwise.

    So, the Ruby equivalent to your Python code translates almost directly:

    counter = -> {
      x = 0
      ->y {
        x += y
        puts x
      }
    }
    
    i = counter.()
    
    i.(2)
    # 2
    
    i.(3)
    # 5
    

    It would probably be more idiomatic to use a method for counter, though:

    def counter
      x = 0
      ->y {
        x += y
        puts x
      }
    end
    
    i = counter
    
    i.(2)
    # 2
    
    i.(3)
    # 5
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there something equivalent to Python's StingIO for Clojure? I'm trying to write a
I m trying write code that after reset set up rrpmax as 3000. It
Trying to write a code at the moment that basically tests to see if
I'm trying to write a simple mail server using Python. I found smtpd that
I'm trying to write a C# repository with atomic contexts and feel like this
I'm trying to use the Google Closure Compiler to split my application code based
I have production code that I am now trying to minify with the Closure
Trying to write a RE to recognize date format mm/dd in Python reg =
Trying to write a python application that downloads images from an RSS feed, and
I'm currently trying write code that will maintain the sorting preference while changing page

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.