Discussion forum about PANORAMIC language
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Discussion forum about PANORAMIC language

Mac, Windows & Android application development with PANORAMIC language
 
HomeHome  SearchSearch  Latest imagesLatest images  RegisterRegister  Log in  
Latest topics
» What happened with the panoramic language ?
by Wed Jan 03, 2024 4:09 pm

» Hello world.
by Wed May 09, 2018 11:53 pm

» Biomorphes de PICKOVER
by Sun Jun 18, 2017 2:33 am

» In less than 10 lines of code
by Fri Jun 16, 2017 5:03 am

» Effect Dopler
by Fri Jun 16, 2017 3:29 am

» SuperEllipse
by Wed Jun 14, 2017 4:01 am

» Plants
by Wed Jun 14, 2017 3:38 am

» Mira's attractor
by Wed Jun 14, 2017 3:30 am

» Triangle of Sierpinski
by Wed Jun 14, 2017 3:22 am

» Esthétique polaire
by Wed Jun 14, 2017 3:16 am

» Butterfly effect : Lorenz equations
by Wed Jun 14, 2017 3:08 am

» Collision detection
by Tue Jun 13, 2017 5:09 am

» The Bees Laline Paull Epub Books
by Mon Oct 10, 2016 8:58 pm

» PANORAMIC for Mac OSX 10 is available
by Tue Aug 09, 2016 6:08 pm

» ide
by Sat Jul 16, 2016 12:27 am

Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

 

 Snapshot : PANORAMIC V 0.9.24i2

Go down 
AuthorMessage
Jack
Admin
Jack


Number of posts : 99
Registration date : 2007-07-01

Snapshot : PANORAMIC V 0.9.24i2 Empty
PostSubject: Snapshot : PANORAMIC V 0.9.24i2   Snapshot : PANORAMIC V 0.9.24i2 EmptyThu Sep 27, 2012 11:54 pm

The snapshot dated September 12, 2012 PANORAMIC V 0.9.24i2 can be downloaded: *** cancelled (see next topic) ***

This trial version is just a ZIP file (no installation and no highlight for new keywords).

The improvements related to official version PANORAMIC V0.9.23 July 19, 2012 are:

1 - new commands for GRID :

GRID_CLEAR N,R,C : clears cells of GRID number N from row 1 to R and from column 1 to C
GRID_SAVE N,R,C,F : saves GRID to the file F, from row 1 to R and from column 1 to C
GRID_LOAD N,F : loads the file F to GRID number N

2 - sub-routines (still in development) :

Declaration by SUB, its name and the parameters.
End by END_SUB.
Called directly by its name.

3 - local variables in a SUB:

DIM_LOCAL declares local variables.

4 - examples:

example with 2 parameters:
Code:
dim i%
for i%=1 to 10
 printer(i%,20)
next i%
end

sub printer(x%,i%)
 print x%*i%
end_sub

example without parameter:
Code:
dim i%
for i%=1 to 10
 printer()
next i%
end

sub printer()
 print i%
end_sub

example with DIM_LOCAL : it is printed 15 then 15
Code:
dim i%,j%
i%=15:j%=15
printer(i%)
printer(j%)
end

sub printer(a%)
dim_local j%
print a%
j%=5
end_sub
Back to top Go down
https://panoramic.forumotion.com
 
Snapshot : PANORAMIC V 0.9.24i2
Back to top 
Page 1 of 1
 Similar topics
-
» Snapshot : PANORAMIC V 0.9.25i1
» Snapshot : PANORAMIC V 0.9.25i2
» Snapshot : PANORAMIC V 0.9.24i3
» Snapshot : PANORAMIC V 0.9.24i4
» Snapshot : PANORAMIC V 0.9.24i5

Permissions in this forum:You cannot reply to topics in this forum
Discussion forum about PANORAMIC language :: Panoramic for Windows :: What is coocking-
Jump to: