Skip to content

Instantly share code, notes, and snippets.

@iceandguard
Created January 2, 2011 22:38
Show Gist options
  • Save iceandguard/762891 to your computer and use it in GitHub Desktop.
Save iceandguard/762891 to your computer and use it in GitHub Desktop.
REAL X, Y, Z
DATA X /1.2345E1/
DATA Y /.12345E2/
DATA Z /.012345E3/
DATA A /-1.2345E1/
DATA B /-0.12345E2/
PRINT *, X, Y, Z
PRINT *, A, B
END
@iceandguard
Copy link
Author

12.345000 12.345000 12.345000
-12.345000 -12.345000

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment