pineapple-notepad/3rdparty/lexilla540/lexilla/test/examples/ruby/225NumberDotMethod.rb.folded

13 lines
320 B
Plaintext
Raw Permalink Normal View History

2024-07-02 23:47:26 +08:00
0 400 0 # Float Literals
0 400 0 12.34
0 400 0 1234e-2
0 400 0 1.234E1
0 400 0 # Range Literals
0 400 0 (1..2)
0 400 0 (2.0..3)
0 400 0 # Method on number
0 400 0 1.5.ceil
0 400 0 1ri.abs
0 400 0 3.times {|i| puts i}
0 400 0 3. times {|i| puts i}
0 400 0