Deutsch English Français Italiano |
<vf4pi2$qsfn$1@dont-email.me> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!news.roellig-ltd.de!open-news-network.org!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Thomas Koenig <tkoenig@netcologne.de> Newsgroups: comp.lang.fortran Subject: Re: Is there a way in Fortran to designate an integer value as integer*8 ? Date: Mon, 21 Oct 2024 05:41:22 -0000 (UTC) Organization: A noiseless patient Spider Lines: 24 Message-ID: <vf4pi2$qsfn$1@dont-email.me> References: <vdict2$339ak$1@dont-email.me> <vdir24$35104$1@dont-email.me> <vdk718$3bulb$1@dont-email.me> <vdl6fi$3jra3$2@dont-email.me> <vdlfpl$3l0f5$1@dont-email.me> <vdmbml$3p2dv$1@dont-email.me> <vdmrgc$3rih7$2@dont-email.me> <vdn4kp$3ssv4$9@dont-email.me> <vdn4ul$3t78e$3@dont-email.me> <vdn659$3ssv4$18@dont-email.me> <vdnrr9$3qrq$1@dont-email.me> <vdnvgh$49ai$1@dont-email.me> <vdqe7n$kqq0$1@dont-email.me> <vdqmue$lo51$11@dont-email.me> <vds64m$sj9s$1@dont-email.me> <vf2507$9mo4$2@dont-email.me> <vf4mbh$qfqu$1@dont-email.me> Injection-Date: Mon, 21 Oct 2024 07:41:23 +0200 (CEST) Injection-Info: dont-email.me; posting-host="6d4bb8a68c0db87b2306abe682a551c2"; logging-data="881143"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/eW9StTzb3pWCBdUGDiycagmkpxNxbmww=" User-Agent: slrn/1.0.3 (Linux) Cancel-Lock: sha1:RBBy8oEIw+Znab4hQoSL8rSECvM= Bytes: 1874 Lynn McGuire <lynnmcguire5@gmail.com> schrieb: > I include all of my common blocks as files to stop typos. That is surely an old technique, but only really works to 100% if you adhere to some additional style constraints in your code. Consider foo.f: DIMENSION A(10) INCLUDE "common.inc" bar.f: INCLUDE "common.inc" (without the DIMENSION) common.inc: COMMON /COMMON/ A