HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. CherryAnt
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Groups 0

    CherryAnt

    @CherryAnt

    0
    Reputation
    122
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    CherryAnt Unfollow Follow

    Latest posts made by CherryAnt

    • RE: scope of loop variables

      @christoph-hart thanks a lot

      posted in Scripting
      C
      CherryAnt
    • scope of loop variables

      What is better:
      for (var i = 0; i < 200; i++){
      or
      for (i = 0; i < 200; i++){
      and why i cant use:
      for (local i = 0; i < 200; i++){

      What is the scope of "i" on that bucles?
      Thanks

      posted in Scripting
      C
      CherryAnt
    • spawn function(thread calls)

      Is there anyway call to more than one function in multithread.
      I mean launch functions in a separate parallel execution threads.
      I need:
      function a(){
      b();//run(b());
      c();//run(c());
      }

      function b(){
      playnote....
      }
      function c(){
      playnote....
      }

      posted in Scripting
      C
      CherryAnt