Jump to content

autoit free-format


Guest wild
 Share

Recommended Posts

please make autoit free-format like in kixtart for example

IF @PRIV="ADMIN" DISPLAY "ADMIN.TXT" ELSE DISPLAY "USER.TXT" ENDIF

is equivalent to

If @PRIV = "admin"

Display "ADMIN.TXT"

Else

Display "user.txt"

Endif

or add a symbol ":" like VBScript

If x = 4 Then : y = 1 : Else : y = 0 : Endif

is equivalent to

If x = 4 Then

y = 1

Else

y = 0

Endif

Edited by wild
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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