Project

General

Profile

Actions

Feature #17769

closed

Proposal: numeric coefficient syntax

Added by mrkn (Kenta Murata) almost 3 years ago. Updated almost 3 years ago.

Status:
Rejected
Assignee:
-
Target version:
-
[ruby-core:103140]
Tags:

Description

When we write a mathematical equation, we often omit a multiplication operator between a coefficient and a variable like 2x.
I guess this convention can be useful in computer programming. Practically, Julia employs this notation:

julia> 2pi
6.283185307179586

julia> x = 3
3

julia> 2x
6

julia> pi
π = 3.1415926535897...

julia> 2pi
6.283185307179586

I wrote a proof-of-concept patch to introduce this notation in Ruby.
We can write the following with this patch:

irb(main):001:0> x = 3
=> 3
irb(main):002:0> 2x
=> 6
irb(main):003:0> def pi = Math::PI
=> :pi
irb(main):004:0> 2pi
=> 6.283185307179586

Files

num_coeff.patch (1.03 KB) num_coeff.patch mrkn (Kenta Murata), 04/01/2021 03:25 AM
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0Like0Like0