Edit

kc3-lang/kc3/doc/1_KC3/1.04_Ratio.en.md

Branch :

  • doc/1_KC3/1.04_Ratio.en.md
  • # 1.4 Ratio
    
    Ratios are made with a couple of large integers : the numerator
    which can be any number, and the denominator which has to be positive.
    They represent fractions of integral numbers.
    They are written with a slash and no space.
    
    ```elixir
    ikc3> 1/2 + 2/3
    7/6
    ikc3> 1/2 * 2/3
    1/3
    ikc3> 1/2 / 2/3
    3/4
    ikc3> 1/2 - 2/3
    -1/6
    ```
    
    ---
    
    Top : [KC3 documentation](/doc/)
    
    Previous : [1.3 Map](1.3_Map)
    
    Next : [1.5 List](1.5_List)