pike.git / refdoc / chapters / data_types.xml

version» Context lines:

pike.git/refdoc/chapters/data_types.xml:1: + <?xml version="1.0" encoding="utf-8"?>   <chapter title="Data types">      <p>In this chapter we will discuss all the different ways to store data   in Pike in detail. We have seen examples of many of these, but we haven't   really gone into how they work. In this chapter we will also see which   operators and functions work with the different types.   There are two categories of data types in Pike: <b>basic types</b>, and   <b>pointer types</b>. The difference is that basic types are copied when   assigned to a variable. With pointer types, merely the pointer is copied,   that way you get two variables pointing to the same thing.</p>