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

  • SEARCH
  • Home
  • 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 1022811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:31:15+00:00 2026-05-16T11:31:15+00:00

How can I return from a proc to a higher context? For example: If

  • 0

How can I return from a proc to a higher context?
For example: If proc X called another proc Y which called a third proc Z – is there a way to return from Z directly back to X ?

  • 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-05-16T11:31:16+00:00Added an answer on May 16, 2026 at 11:31 am

    From 8.5 onwards, yes. The return command has a -level option which is used to do just that:

    return -level 2 $someValue
    

    Thus, for example:

    proc X {} {
        puts "X - in"
        Y
        puts "X - out"
    }
    proc Y {} {
        puts "Y - in"
        Z
        puts "Y - out"
    }
    proc Z {} {
        puts "Z - in"
        return -level 2 "some value"
        puts "Z - out"
    }
    X
    

    produces this output:

    X - in
    Y - in
    Z - in
    X - out
    

    Note that doing this reduces the reusability of Z, but that’s your business.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can chroot with Dir.chroot Dir.chroot(/var/chroot/mychroot) But how can I return back from chroot?
How can return a variable from a thead (I have the threads handle too).
How can i return xdocument from wcf service??? what i need to do to
Can I return a StreamReader from a method ?
How can I return a value from ShowStatus elapsed event? Here is my code.
How can i add orderby to this: return (from m in response[holder].Children() orderby m[name]
My question is how can I return a nil from an exception instead of
How can I return null instead of a 'undefined' from a select element. Basically
How can i change the implementation of a method at runtime from return false;
How can I return List<personel> data type from below procedure. If I press F5

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.