IonicWind Software

IWBasic => General Questions => Topic started by: zaphod on November 14, 2009, 03:07:31 AM

Title: whishlist...
Post by: zaphod on November 14, 2009, 03:07:31 AM
I know its easy to wish but...

In the ide : an indent function (in the edit menu, or context menu) would be great for lisibility of code.

In the language : a swap function like that :
int a,b
swap a,b

No need to use a temp value.
Title: Re: whishlist...
Post by: Ionic Wind Support Team on November 14, 2009, 07:16:17 AM
#1 Highlight some code, press tab or shift-tab

#2 You can swap two integer values using an exclusive or 3 times:


a ||= b
b ||= a
a ||= b


Yes I know, a swap would be easier, but I like to show off that trick  ;D

Title: Re: whishlist...
Post by: zaphod on November 14, 2009, 12:39:20 PM
Thx for the tricks. I adopt.

A little thing (detail) : in project, when i add versioninfo, i have the value :
VALUE  "LegalCopyright",   "CopyrightÂÃ,© 2006"

Nice if it is to the actual year...