Mastering TCL: Unleashing the Power of Conditionals, Loops, and Procedures

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ม.ค. 2025

ความคิดเห็น • 48

  • @nfak105
    @nfak105 4 ปีที่แล้ว +4

    Thank you so much.Very informative.

    • @TechSimplifiedTV
      @TechSimplifiedTV  4 ปีที่แล้ว +1

      Glad it was helpful! Please share this channel to your known circle!

  • @rishabhkumarsoni1240
    @rishabhkumarsoni1240 2 ปีที่แล้ว +4

    It is really helpful when you are relating everything to VLSI

    • @TechSimplifiedTV
      @TechSimplifiedTV  2 ปีที่แล้ว

      You're welcome 😊 !
      It seems The Videos Helped You ! Please share this channel in your known or professional circle to spread the help to other also !

  • @praveenkumarsharma5762
    @praveenkumarsharma5762 2 หลายเดือนก่อน +1

    amazing lecture,
    very insightful,
    It would have been a cherry on top if you would have given us an example by running the script code in the terminal itself, so that we could have got the idea if the output resembles with yours or not........

    • @TechSimplifiedTV
      @TechSimplifiedTV  2 หลายเดือนก่อน

      Here is the example : th-cam.com/video/DogAWB-Ym2s/w-d-xo.html

  • @jvsnyc
    @jvsnyc 4 หลายเดือนก่อน +1

    This is a good video and I still like the series. Now, this is important to know though, the meaning and use of - as a body is not as you describe it. What happens when you put - as the body for a pattern means "use what you will use for the next pattern mentioned" which chains as far as it needs to until it finds a body that isn't -
    That is to say, your script you wrote will also call anything with 0 1 or 2 sides a triangle as well:
    % set no_of_edge 1
    1
    % switch $no_of_edge {
    0 -
    1 -
    2 -
    3 { puts "This is a triangle." }
    }
    This is a triangle.
    Still a worthwhile video, that distinction is important to switch behavior tho.

  • @find_a_proton
    @find_a_proton 11 หลายเดือนก่อน +1

    nice videos sir , n its an request that if you again teach , so if you will put that output window pic also than it will be better to understand the code . thanks again, u have posted very useful content

    • @TechSimplifiedTV
      @TechSimplifiedTV  11 หลายเดือนก่อน +1

      Watch this TCL Marathon (With Codes Download Link) : th-cam.com/video/v8eu-CCrm-E/w-d-xo.html
      Download Codes after each slide and run & generate & see output yourself.

  • @jvsnyc
    @jvsnyc 5 หลายเดือนก่อน +1

    At 6:54 the elseif body can never be executed, so you will never ever see "$x is 2", as 2 != 1, the first if () is true, the elself is only even evaluated if the first condition is false...I missed that the first time I watched. Thanks.

    • @TechSimplifiedTV
      @TechSimplifiedTV  5 หลายเดือนก่อน +1

      You're welcome 😊 !
      It seems The Videos Helped You ! Please share this channel in your known or professional circle to spread the help to other also !

    • @jvsnyc
      @jvsnyc 4 หลายเดือนก่อน

      @@TechSimplifiedTV I will, and will be watching more of these soon.

  • @sashab4628
    @sashab4628 3 ปีที่แล้ว +1

    Could you please explain 23:25 what is c b a? Thanks

    • @TechSimplifiedTV
      @TechSimplifiedTV  3 ปีที่แล้ว

      Thanks for Asking ! Already made a QnA episode on this Question. Here is the link : th-cam.com/video/cRdwKEpN0bI/w-d-xo.html

  • @DRAVANEESHKDUBEY
    @DRAVANEESHKDUBEY ปีที่แล้ว +1

    Last example of foreach: getting diiferent results other than expected

    • @DRAVANEESHKDUBEY
      @DRAVANEESHKDUBEY ปีที่แล้ว +1

      I think: foreach {a} $listcol {b} $listfood {c} $status Will work

    • @TechSimplifiedTV
      @TechSimplifiedTV  ปีที่แล้ว +1

      same question was answered in this QnA episode : th-cam.com/video/cRdwKEpN0bI/w-d-xo.html

  • @vandan5036
    @vandan5036 2 ปีที่แล้ว +2

    can you able to explain this upvar in more detail please

  • @saloniraj7564
    @saloniraj7564 4 ปีที่แล้ว +2

    Sir your other 2 videos are private..how to access them? And may I know how many videos would comprise under this tcl scripting lectures?

    • @TechSimplifiedTV
      @TechSimplifiedTV  4 ปีที่แล้ว +2

      Publishing each Video takes a lot of Background work , until they are done they remain unpublished(which may appear to private). Each Sunday you can expect a new video in this channel unless there is any technical glitch !

  • @vandan5036
    @vandan5036 3 ปีที่แล้ว +1

    in SWITCH CASE when we set no_of_edge 0; why it is showing in the output that this is a triangle?

  • @nandulasaibhaskar8913
    @nandulasaibhaskar8913 2 ปีที่แล้ว +1

    Hi sir,
    When I am implementing for loop example i am getting extra characters after close brace

    • @TechSimplifiedTV
      @TechSimplifiedTV  2 ปีที่แล้ว

      Please follow the code provided in the website article. find the link in the video description .

  • @yogesh1757
    @yogesh1757 3 ปีที่แล้ว +1

    Please provide and explain with the corresponding output too

    • @TechSimplifiedTV
      @TechSimplifiedTV  3 ปีที่แล้ว

      Please provide the specific timestamp & your doubts !

  • @akshaypatharkar7696
    @akshaypatharkar7696 3 ปีที่แล้ว +2

    sir in last example of foreach you created 3 list , is there any purpose of these 3 diff. lists as when I am executing the code its taking 3 elements of same list.

  • @ammuluk9935
    @ammuluk9935 ปีที่แล้ว +1

    Sir why we use after 200 and update in the end of the script

    • @TechSimplifiedTV
      @TechSimplifiedTV  ปีที่แล้ว +1

      so that u can distinctively , see every print command output. try the code with and without update command. u will see the difference.

  • @tapmahesh
    @tapmahesh 4 ปีที่แล้ว

    Very beautiful video. Can you please let me know the difference between foreach and foreach_in_collection

    • @TechSimplifiedTV
      @TechSimplifiedTV  4 ปีที่แล้ว +1

      Thanks for asking ! Will plan a QnA Video !

  • @AshokKumar-dv8qe
    @AshokKumar-dv8qe ปีที่แล้ว +1

    Upvar is not clear can you make a one more session to explain in brief

  • @dn2358
    @dn2358 4 ปีที่แล้ว +2

    Thanks sir but sir can you put entire scripting tutorial please 🙏

    • @TechSimplifiedTV
      @TechSimplifiedTV  4 ปีที่แล้ว +2

      Yes, sure ! This is a series , more episodes are in pipeline.

  • @virajpadwal7624
    @virajpadwal7624 4 ปีที่แล้ว +3

    Thanks sir

  • @kavitagaur9829
    @kavitagaur9829 ปีที่แล้ว +1

    Upvar is not clear .

    • @TechSimplifiedTV
      @TechSimplifiedTV  ปีที่แล้ว

      Thanks ! Can you elaborate a bit more ! We will plan a QnA Episode based on your feedback !

  • @merrygo7189
    @merrygo7189 4 ปีที่แล้ว +1

    👍

    • @TechSimplifiedTV
      @TechSimplifiedTV  4 ปีที่แล้ว

      Glad yoou have liked it ! Please share among your known circle !

  • @arjunnatukula7128
    @arjunnatukula7128 4 ปีที่แล้ว +1

    Thanks sir ,but release videos some more fast

    • @TechSimplifiedTV
      @TechSimplifiedTV  4 ปีที่แล้ว +2

      Each Sunday you can expect a new video in this channel unless there is any technical glitch !

    • @arjunnatukula7128
      @arjunnatukula7128 4 ปีที่แล้ว +3

      @@TechSimplifiedTV thx in advance

    • @arjunnatukula7128
      @arjunnatukula7128 8 หลายเดือนก่อน

      Is it possible to get notes