﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2633	more possibilities when assigning values to variables	anonymous		"Just a few nice things that will probably be rejected:
1)
{{{
$a = $b = $c = 0
; $a = 0
; $b = 0
; $c = 0
}}}
2)
{{{
$a, $b, $c = 1, 2, 3
; $a = 1
; $b = 2
; $c = 3
}}}
3) (my favorite)
{{{
$a, $b = $b, $a
; $a = the old value of $b
; $b = the old value of $a
}}}
"	Feature Request	closed		AutoIt		None	Rejected	variables, assignment	
