2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-26 19:12:10 +00:00
Files
test/doc/js-lib/examples/core_example.html
Gennadiy Rozental f645dd4dfd Major update in BTL docs
[SVN r14805]
2002-08-13 10:02:20 +00:00

19 lines
389 B
HTML

<html>
<head>
<script language="javascript">var viso_path=".."</script>
<script language="javascript" src="../core.js" > </script>
</head>
<body>
<script language="javascript">
var f = include;
alert( include );
alert( funcname( f ) );
alert( Array.prototype.push );
alert( funcname(Array.prototype.push) );
var p = new Pair;
alert( p );
alert( p.is_a( Pair ) );
</script>
</body>
</html>