literals_floating_point.sf 126 B

1234567891011
  1. #!/usr/bin/ruby
  2. #
  3. ## https://rosettacode.org/wiki/Literals/Floating_point
  4. #
  5. say 1.234;
  6. say .1234;
  7. say 1234e-5;
  8. say 12.34e5;