Files
harbour-core/harbour/website/samples/array16.prg.html
Viktor Szakats ceb5386de5 2012-11-18 12:46 UTC+0100 Viktor Szakats (harbour syenar.net)
* src/pp/ppcore.c
  * src/pp/pplib.c
    * some uncrustify formattings applied

  * tests/testbrw.prg
  * website/samples/testbrw.prg.html
    * cleanup

  * website/menu/harbour-menu.js
    ! fixed menu links to work when used under a subdir

  * website/samples/array16.prg.html
  * website/samples/arreval.prg.html
  * website/samples/begin.prg.html
  * website/samples/byref.prg.html
  * website/samples/codebl.prg.html
  * website/samples/codebloc.prg.html
  * website/samples/dates3.prg.html
  * website/samples/foreach.prg.html
  * website/samples/hello.prg.html
  * website/samples/initexit.prg.html
  * website/samples/longdev.prg.html
  * website/samples/mousetst.prg.html
  * website/samples/onidle.prg.html
  * website/samples/osshell.prg.html
  * website/samples/parseini.prg.html
  * website/samples/switch.prg.html
  * website/samples/testbrdb.prg.html
  * website/samples/testbrw.prg.html
  * website/samples/testhtml.prg.html
  * website/samples/testidle.prg.html
  * website/samples/tstmacro.prg.html
    * enabled light mode to disable gutter, so now
      the code can be copy pasted easily
2012-11-18 11:51:17 +00:00

93 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8">
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/xregexp/2.0.0/xregexp-min.js"></script>
<script type="text/javascript" src="http://www.xregexp.com/addons/backcompat.js"></script>
<script type="text/javascript" src="/js/shCore.js"></script>
<script type="text/javascript" src="/js/shBrushHarbour.js"></script>
<link href="/css/shCore.css" rel="stylesheet" type="text/css" />
<link href="/css/shThemeDefault.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">SyntaxHighlighter.all()</script>
</head>
<body>
<script type="syntaxhighlighter" class="brush: harbour; light: true"><![CDATA[
// Harbour multidimensional arrays support
PROCEDURE Main()
LOCAL a := { 100, 200, "Third" }
LOCAL b := Array( 8832 ) // 8832 elements !!! Maximum for 16 Bit !!!
? ValType( a )
? ValType( { "A" } )
AAdd( a, "new element" )
? Len( a )
? a[ 1 ]
? a[ 2 ]
? a[ 3 ]
? a[ 4 ]
? ATail( a )
a[ 3 ] := { "this", { "seems", "to", { "work", "so", "well" } } }
? a[ 3 ][ 2 ][ 3 ][ 1 ] // "work"
a[ 3, 2 ][ 3, 1 ] := "Harbour power!" // different ways to specify the indexes
? a[ 3, 2, 3, 1 ]
? ValType( b )
? Len( b )
b[ 8832 ] := "Harbour"
? b[ 8832 ]
? ATail( b )
ASize( b, 200 )
? Len( b )
b[ 100 ] := 10
Test( b[ 100 ]++ )
? b[ 100 ]
b[ 100 ] := 10
Test( ++b[ 100 ] )
? b[ 100 ]
b := { 1, { 2, { 4, 5 } } }
Test( b[ 2 ][ 2 ][ 1 ]++ )
? b[ 2 ][ 2 ][ 1 ]
b[ 2 ][ 2 ][ 1 ] := 2
Test( ++b[ 2 ][ 2 ][ 1 ] )
? b[ 2 ][ 2 ][ 1 ]
ReleaseTest()
RETURN
FUNCTION Test( n )
? n
RETURN NIL
FUNCTION ReleaseTest()
LOCAL a := { 1, 2, 3 }
HB_SYMBOL_UNUSED( a )
RETURN NIL
]]></script>
</body>
</html>