+ contrib/hbct/tests/dates4.prg
- tests/dates4.prg
* contrib/hbnf/byt2bit.prg
* contrib/hbnf/dectobin.prg
* contrib/hbnf/popadder.prg
* tests/ac_test2.prg
* tests/ainstest.prg
* tests/and_or.prg
* tests/array16.prg
* tests/arrays.prg
* tests/begin.prg
* tests/byref.prg
* tests/calling.prg
* tests/clasinh.prg
* tests/clasinit.prg
* tests/classes.prg
* tests/clsnv.prg
* tests/codebloc.prg
* tests/dates.prg
* tests/debugtst.prg
* tests/destruct.prg
* tests/dirtest.prg
* tests/dynobj.prg
* tests/exittest.prg
* tests/fib.prg
* tests/files.prg
* tests/fornext.prg
* tests/fsplit.prg
* tests/gtchars.prg
* tests/ifelse.prg
* tests/inherit.prg
* tests/inifiles.prg
* tests/initexit.prg
* tests/inkeytst.prg
* tests/inline.prg
* tests/iotest.prg
* tests/iotest2.prg
* tests/longdev.prg
* tests/longstr2.prg
* tests/memvar.prg
* tests/multiarg.prg
* tests/newrdd.prg
* tests/nums.prg
* tests/objasign.prg
* tests/objects.prg
* tests/overload.prg
* tests/passref.prg
* tests/procname.prg
* tests/readhrb.prg
* tests/returns.prg
* tests/rto_get.prg
* tests/rto_tb.prg
* tests/sbartest.prg
* tests/setkeys.prg
* tests/speed.prg
* tests/statfun.prg
* tests/statics.prg
* tests/stripem.prg
* tests/switch.prg
* tests/tb1.prg
* tests/test_all.prg
* tests/testbrw.prg
* tests/testcls.prg
* tests/testerro.prg
* tests/testfor.prg
* tests/testmem.prg
* tests/testntx.prg
* tests/testop.prg
* tests/testpp.prg
* tests/testrdd2.prg
* tests/teststr.prg
* tests/testvars.prg
* tests/testwarn.prg
* tests/tstasort.prg
* tests/tstdbi.prg
* tests/tstmacro.prg
* tests/varparam.prg
* tests/vidtest.prg
* various cleanups, fixes and formatting
now most tests are warning and error free
76 lines
1.2 KiB
Plaintext
76 lines
1.2 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
// Harbour multidimensional arrays support
|
|
|
|
PROCEDURE Main()
|
|
|
|
LOCAL a := { 100, 200, "Third" }
|
|
LOCAL b := Array( 8832 ) // 8832 elements !!! Maximum for 16 Bit !!!
|
|
|
|
QOut( ValType( a ) )
|
|
QOut( ValType( { "A" } ) )
|
|
|
|
AAdd( a, "new element" )
|
|
QOut( Len( a ) )
|
|
|
|
QOut( a[ 1 ] )
|
|
QOut( a[ 2 ] )
|
|
QOut( a[ 3 ] )
|
|
QOut( a[ 4 ] )
|
|
|
|
QOut( ATail( a ) )
|
|
|
|
a[ 3 ] := { "this", { "seems", "to", { "work", "so", "well" } } }
|
|
QOut( a[ 3 ][ 2 ][ 3 ][ 1 ] ) // "work"
|
|
|
|
a[ 3, 2 ][ 3, 1 ] := "Harbour power!" // different ways to specify the indexes
|
|
QOut( a[ 3, 2, 3, 1 ] )
|
|
|
|
QOut( ValType( b ) )
|
|
QOut( Len( b ) )
|
|
|
|
b[ 8832 ] := "Harbour"
|
|
|
|
QOut( b[ 8832 ] )
|
|
|
|
QOut( ATail( b ) )
|
|
|
|
ASize( b, 200 )
|
|
QOut( Len( b ) )
|
|
|
|
b[ 100 ] := 10
|
|
Test( b[ 100 ]++ )
|
|
QOut( b[ 100 ] )
|
|
|
|
b[ 100 ] := 10
|
|
Test( ++b[ 100 ] )
|
|
QOut( b[ 100 ] )
|
|
|
|
b := { 1, { 2, { 4, 5 } } }
|
|
Test( b[ 2 ][ 2 ][ 1 ]++ )
|
|
QOut( b[ 2 ][ 2 ][ 1 ] )
|
|
|
|
b[ 2 ][ 2 ][ 1 ] := 2
|
|
Test( ++b[ 2 ][ 2 ][ 1 ] )
|
|
QOut( b[ 2 ][ 2 ][ 1 ] )
|
|
|
|
ReleaseTest()
|
|
|
|
RETURN
|
|
|
|
FUNCTION Test( n )
|
|
|
|
QOut( n )
|
|
|
|
RETURN NIL
|
|
|
|
FUNCTION ReleaseTest()
|
|
|
|
LOCAL a := { 1, 2, 3 }
|
|
|
|
HB_SYMBOL_UNUSED( a )
|
|
|
|
RETURN NIL
|