diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-05-18 19:26:03 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-05-18 19:26:03 -0300 |
commit | 054e0b888a45bc143b8e4cb7a6b77eba0350bb49 (patch) | |
tree | 5aff6a496078db9a2e068a04d484f46dca628319 /manual.tex | |
parent | da252eeff7c64b034fa0c5acf25a5e8b2565bd4a (diff) | |
download | lua-054e0b888a45bc143b8e4cb7a6b77eba0350bb49.tar.gz lua-054e0b888a45bc143b8e4cb7a6b77eba0350bb49.tar.bz2 lua-054e0b888a45bc143b8e4cb7a6b77eba0350bb49.zip |
number type in Lua changed for double (by default).
Diffstat (limited to 'manual.tex')
-rw-r--r-- | manual.tex | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | % $Id: manual.tex,v 1.7 1998/03/30 18:17:55 roberto Exp roberto $ | 1 | % $Id: manual.tex,v 1.8 1998/04/02 16:09:16 roberto Exp roberto $ |
2 | 2 | ||
3 | \documentstyle[fullpage,11pt,bnf]{article} | 3 | \documentstyle[fullpage,11pt,bnf]{article} |
4 | 4 | ||
@@ -38,7 +38,7 @@ Waldemar Celes | |||
38 | \tecgraf\ --- Computer Science Department --- PUC-Rio | 38 | \tecgraf\ --- Computer Science Department --- PUC-Rio |
39 | } | 39 | } |
40 | 40 | ||
41 | \date{\small \verb$Date: 1998/03/30 18:17:55 $} | 41 | \date{\small \verb$Date: 1998/04/02 16:09:16 $} |
42 | 42 | ||
43 | \maketitle | 43 | \maketitle |
44 | 44 | ||
@@ -235,7 +235,7 @@ There are six \Index{basic types} in Lua: \Def{nil}, \Def{number}, | |||
235 | \Def{string}, \Def{function}, \Def{userdata}, and \Def{table}. | 235 | \Def{string}, \Def{function}, \Def{userdata}, and \Def{table}. |
236 | \emph{Nil} is the type of the value \nil, | 236 | \emph{Nil} is the type of the value \nil, |
237 | whose main property is to be different from any other value. | 237 | whose main property is to be different from any other value. |
238 | \emph{Number} represents real (floating-point) numbers, | 238 | \emph{Number} represents real (floating-point with double precision) numbers, |
239 | while \emph{string} has the usual meaning; | 239 | while \emph{string} has the usual meaning; |
240 | notice that Lua is \Index{eight-bit clean}, | 240 | notice that Lua is \Index{eight-bit clean}, |
241 | and so strings can contain any ISO character, | 241 | and so strings can contain any ISO character, |