@@ -58,44 +58,32 @@ module English end if false
58
58
# The default separator pattern used by String#split. May be set from
59
59
# the command line using the <code>-F</code> flag.
60
60
alias $FS $;
61
-
62
- # The default separator pattern used by String#split. May be set from
63
- # the command line using the <code>-F</code> flag.
64
61
alias $FIELD_SEPARATOR $;
65
62
66
63
# The separator string output between the parameters to methods such
67
64
# as Kernel#print and Array#join. Defaults to +nil+, which adds no
68
65
# text.
69
- alias $OFS $,
70
66
71
67
# The separator string output between the parameters to methods such
72
68
# as Kernel#print and Array#join. Defaults to +nil+, which adds no
73
69
# text.
70
+ alias $OFS $,
74
71
alias $OUTPUT_FIELD_SEPARATOR $,
75
72
76
73
# The input record separator (newline by default). This is the value
77
74
# that routines such as Kernel#gets use to determine record
78
75
# boundaries. If set to +nil+, +gets+ will read the entire file.
79
76
alias $RS $/
80
-
81
- # The input record separator (newline by default). This is the value
82
- # that routines such as Kernel#gets use to determine record
83
- # boundaries. If set to +nil+, +gets+ will read the entire file.
84
77
alias $INPUT_RECORD_SEPARATOR $/
85
78
86
79
# The string appended to the output of every call to methods such as
87
80
# Kernel#print and IO#write. The default value is +nil+.
88
81
alias $ORS $\
89
-
90
- # The string appended to the output of every call to methods such as
91
- # Kernel#print and IO#write. The default value is +nil+.
92
82
alias $OUTPUT_RECORD_SEPARATOR $\
93
83
94
- # The number of the last line read from the current input file.
95
- alias $INPUT_LINE_NUMBER $.
96
-
97
84
# The number of the last line read from the current input file.
98
85
alias $NR $.
86
+ alias $INPUT_LINE_NUMBER $.
99
87
100
88
# The last line read by Kernel#gets or
101
89
# Kernel#readline. Many string-related functions in the
@@ -135,8 +123,6 @@ module English end if false
135
123
136
124
# The process number of the program being executed. Read only.
137
125
alias $PID $$
138
-
139
- # The process number of the program being executed. Read only.
140
126
alias $PROCESS_ID $$
141
127
142
128
# The exit status of the last child process to terminate. Read
0 commit comments