Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.60
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby32 /
share /
doc /
alt-ruby32-doc /
syntax /
Delete
Unzip
Name
Size
Permission
Date
Action
assignment.rdoc
11.84
KB
-rw-r--r--
2026-03-27 01:23
calling_methods.rdoc
11.59
KB
-rw-r--r--
2026-03-27 01:23
comments.rdoc
7.32
KB
-rw-r--r--
2026-03-27 01:23
control_expressions.rdoc
14.26
KB
-rw-r--r--
2026-03-27 01:23
exceptions.rdoc
2.16
KB
-rw-r--r--
2026-03-27 01:23
literals.rdoc
15.72
KB
-rw-r--r--
2026-03-27 01:23
methods.rdoc
16.92
KB
-rw-r--r--
2026-03-27 01:23
miscellaneous.rdoc
3.78
KB
-rw-r--r--
2026-03-27 01:23
modules_and_classes.rdoc
8.23
KB
-rw-r--r--
2026-03-27 01:23
pattern_matching.rdoc
13.84
KB
-rw-r--r--
2026-03-27 01:23
precedence.rdoc
1.09
KB
-rw-r--r--
2026-03-27 01:23
refinements.rdoc
6.84
KB
-rw-r--r--
2026-03-27 01:23
Save
Rename
= Precedence From highest to lowest, this is the precedence table for ruby. High precedence operations happen before low precedence operations. !, ~, unary + ** unary - *, /, % +, - <<, >> & |, ^ >, >=, <, <= <=>, ==, ===, !=, =~, !~ && || .., ... ?, : modifier-rescue =, +=, -=, etc. defined? not or, and modifier-if, modifier-unless, modifier-while, modifier-until { } blocks Unary <code>+</code> and unary <code>-</code> are for <code>+1</code>, <code>-1</code> or <code>-(a + b)</code>. Modifier-if, modifier-unless, etc. are for the modifier versions of those keywords. For example, this is a modifier-unless statement: a += 1 unless a.zero? Note that <code>(a if b rescue c)</code> is parsed as <code>((a if b) rescue c)</code> due to reasons not related to precedence. See {modifier statements}[control_expressions.rdoc#label-Modifier+Statements]. <code>{ ... }</code> blocks have priority below all listed operations, but <code>do ... end</code> blocks have lower priority. All other words in the precedence table above are keywords.