D-LIB v1.1

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
Mischa
Enthusiast
Enthusiast
Posts: 115
Joined: Fri Aug 15, 2003 7:43 pm

D-LIB v1.1

Post by Mischa »

D-LIB version 1.1
(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
DominiqueB
Enthusiast
Enthusiast
Posts: 103
Joined: Fri Apr 25, 2003 4:00 pm
Location: France

Realy great works

Post by DominiqueB »

Thank's for sharing !

Dominique
Dominique

Windows 10 64bits. Pure basic 32bits
jack
Addict
Addict
Posts: 1358
Joined: Fri Apr 25, 2003 11:10 pm

Post by jack »

awsome! :D
Post Reply