(a little script language)
Created [completely] with PureBasic
What'S new:
-----------
- Syntax changed (now BASIC alike, very similarly to PB)
- Some cosmetic operations
- Almost unlimited function nesting
- Dynamic arrays
- Self-defined constants
- Over 44000 known Windows API-Constants
- Over 9800 known Windows API-Functions
- Procedures (with locally defined variables)
- User-functions (easy creation)
- Auto-include user-functions
- Auto-include Libraries (dlls)
- Auto-detect avaible library-functions
- Includes (split sources in several pieces)
- Simple Editor with syntax coloring (created with D-LIB/source included)
- About 150 user functions are already finished
- Some examples
A small executable example:
(D-LIB is necessarily for compile it

Code: Select all
Procedure SpeedTest(count)
Declare time,result.s,a,mathresult
#start = 100
time = GetTickCount()
While a < Add(count,1)
mathresult = Add(#start,Mul(a,10)):Inc a
Wend
result = Add$("Last result: ",mathresult)
result = Add$(Add$(result,Chr$(13)),Chr$(10))
result = Add$(Add$(Add$(result,"Needed time: "),Sub(GetTickCount(),time))," msec")
ProcedureReturn result
EndProcedure
Declare Minimum : Minimum = 1000
Messagebox(0,SpeedTest(Add(Minimum,50000)),"Result",#MB_ICONQUESTION|#MB_APPLMODAL)
Download: http://www.thinkrelative.de/dlib/downlo ... -Setup.exe
(Freeware)
Planned for the next version (in approx. 6-8 months):
--------------------------------------------------
- a complete WYSWYG development environment
with user-specific Plugins and the constant
accessability on the sourcecode
Regards,
Mischa