~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/programming/names.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH names 1 "April 1993" "Scilab Group" "Scilab Syntax"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
names - scilab names syntax
5
 
.SH DESCRIPTION
6
 
Names of variables and functions must begin with a letter or one of
7
 
the following special characters  '\fV%\fR', '\fV_\fR', '\fV#\fR', '\fV!\fR', '\fV$\fR', '\fV?\fR'.
8
 
 
9
 
 
10
 
Next characters may be letters or digits or any special character in '\fV_\fR', '\fV#\fR', '\fV!\fR', '\fV$\fR', '\fV?\fR'
11
 
 
12
 
 
13
 
Names may be as long as you want but only the first 24  characters are
14
 
taken into account. Upper and lower case letters are different.
15
 
 
16
 
.SH EXAMPLES
17
 
.nf
18
 
//Valid names
19
 
%eps
20
 
A1=123
21
 
#Color=8
22
 
My_Special_Color_Table=rand(10,3)
23
 
//Non valid names
24
 
//1A , b%, .C
25
 
.fi