Jump to content

Recommended Posts

Posted

I noticed the following will end up with -1 instead of 9 result using the beta. Maybe this is good but why is this?

Dim $i = 10
Dim $i - $i - 1
Posted

it's def not the way to do it, you wipe out the 1st declaration of $i = 10 with the dim

Dim $i = 10
$i -= 1
MsgBox(0,"$i", $i)
Thanx for the fast response GA.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...