Skip to content

Instantly share code, notes, and snippets.

@run-dlang
Created October 6, 2023 07:49
Show Gist options
  • Save run-dlang/ce8b5c3d047d187b1b059852f6842412 to your computer and use it in GitHub Desktop.
Save run-dlang/ce8b5c3d047d187b1b059852f6842412 to your computer and use it in GitHub Desktop.
Code shared from run.dlang.io.
import std;
void main()
{
    real x = 3.14159265358979323846364e300;
    double y = -3.14159265358979323846364e3000L;
    float z = -3.14159265358979323846364e30;
       
 
   writefln ("x = %.1g",x);
   writefln ("y = %.2g",y);
   writefln ("z = %.19g",z);
   
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment