git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5262 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp 2010-11-18 17:52:37 +00:00
parent 4eb25924b0
commit fed74f2e98
4 changed files with 8 additions and 20 deletions

View File

@ -121,14 +121,7 @@ clarity, you must enclose the entire expression in quotes.
</PRE>
<P>and Boolean operators:
</P>
<PRE>A == B
A != B
A < B
A <= B
A > B
A >= B
A && B
A || B
<PRE>A == B, A != B, A < B, A <= B, A > B, A >= B, A && B, A || B
</PRE>
<P>Each A and B is a number or a variable reference like $a or ${abc},
or another Boolean expression.

View File

@ -117,14 +117,7 @@ An expression is built out of numbers
and Boolean operators:
A == B
A != B
A < B
A <= B
A > B
A >= B
A && B
A || B :pre
A == B, A != B, A < B, A <= B, A > B, A >= B, A && B, A || B :pre
Each A and B is a number or a variable reference like $a or $\{abc\},
or another Boolean expression.

View File

@ -15,13 +15,14 @@
</P>
<PRE>print str
</PRE>
<UL><LI>str1 = text string to print, which may contain variables
<UL><LI>str = text string to print, which may contain variables
</UL>
<P><B>Examples:</B>
</P>
<PRE>print "Done with equilibration"
print Vol=$v
print "The system volume is now $v"
print "The system volume is now $v"
print 'The system volume is now $v'
</PRE>
<P><B>Description:</B>
</P>

View File

@ -12,13 +12,14 @@ print command :h3
print str :pre
str1 = text string to print, which may contain variables :ul
str = text string to print, which may contain variables :ul
[Examples:]
print "Done with equilibration"
print Vol=$v
print "The system volume is now $v" :pre
print "The system volume is now $v"
print 'The system volume is now $v' :pre
[Description:]