Our first Fortran .NET article!
-
I saw some good articles you wrote using MC++.NET, so I am not surprised that you are interested in this. Think this, the code you have written in MC++ get straight compiled to MFC/ATL with VERY minor changes (one new namespace and a few includes). Wouldn't that be fun? // Fazlul
Get RadVC today! Play RAD in VC++ http://www.capitolsoft.com
Fazlul Kabir wrote: Wouldn't that be fun? If it works, that would be fun; good fun indeed! Nish Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
-
Which begs the question... Never mind, i'll work this one out for myself: Got-it. Been a long time now since I did any html. I'd rather be writing regular expressions. :rolleyes: Cheers, Robert. sonork ID: 100.9940
Robert Dickenson wrote: Never mind, i'll work this one out for myself: Clap Clap Clap Clap Clap Clap Good work lad!!! :-) Robert Dickenson wrote: I'd rather be writing regular expressions. Everyone's gotta have some weirdo-habits eh? Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
-
Fazlul Kabir wrote: Wouldn't that be fun? If it works, that would be fun; good fun indeed! Nish Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
Nish [BusterBoy] wrote: If it works, that would be fun; good fun indeed! Actually it does. We're planning to give out an internal beta to some selected customers. If you are interested let me know. I'll include you in the list. // Fazlul
Get RadVC today! Play RAD in VC++ http://www.capitolsoft.com
-
Robert Dickenson wrote: Never mind, i'll work this one out for myself: Clap Clap Clap Clap Clap Clap Good work lad!!! :-) Robert Dickenson wrote: I'd rather be writing regular expressions. Everyone's gotta have some weirdo-habits eh? Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
Nish [BusterBoy] wrote: Clap Clap Clap Clap Clap Clap Good work lad!!! :laugh: :laugh:
-
Woohoo! - Fortran for Microsoft.NET. I've been waiting months for someone to write something about Fortran and .NET! Ah - the heady days of 10 page long subroutines and variables names such as
aax
are here again... cheers, Chris Maunder -
Fortran is the language that I personally used to get on programming back in early eighties. I still can remember those days when programming was a real pain in the neck. We used to submit our Fortran77 routines in a homongous 10(?) inch diskette to our mainframe administrator and when we got the output some 12 hours later, it was often a huge list of compiler errors. Things however got better later when PC replaced mainframe and C++ invaded engineering apps. Other than familiarity with a once popular language sysntax, I wonder why people would be interested in using Fortran.NET? The reason Fortran and other Fortran-like C++ compilers (e.g. Blitz++) are so popular is that they all use highly optimized, blazing fast native compilers. I wonder how hardcore Fortran developers will feel when they will be asked to leave their world class compilers behind and instead compile their programs with a much sluggish managed framework. // Fazlul
Get RadVC today! Play RAD in VC++ http://www.capitolsoft.com
Fazlul Kabir wrote: I still can remember those days when programming was a real pain in the neck. Yeah, nowadays it's the dreaded boss who inherited that attribute! :laugh: Foot-and-Mouth disease is believed to be the first virus unable to spread through Microsoft Outlook
-
Robert Dickenson wrote: Never mind, i'll work this one out for myself: Clap Clap Clap Clap Clap Clap Good work lad!!! :-) Robert Dickenson wrote: I'd rather be writing regular expressions. Everyone's gotta have some weirdo-habits eh? Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
Nish [BusterBoy] wrote: Everyone's gotta have some weirdo-habits eh? I could try drop some regexp strings in here that look like they may lock Chris' servers up hard for good ;P , just kidding. Just noticed this button called "Quote Selected Text" whoooHooo, learned something new today after all.... sonork ID: 100.9940
-
and variables names such as aax are here again... FORTRAN gave us all one good thing, defacto standard names for our loop counters... for (int i = 0; i < .....) *for (int j = 0; j < .....) **for (int k = 0; k < .....) Who ever wondered why we use i, then j, then k etc ? (I'm assuming this is not mentioned in K&R, having never read them) *Ok, so what's the html tag for a tab ? sonork ID: 100.9940
The other thing that you can do is wrap the text that you want to have a tab in the 'pre' tag: <pre> Hello World! </pre>
Hello World!
As you may or may not know, pre preserves whitespace formatting for you. Chris has some special stylesheet properties for the pre tag, obviously, but the text is still tabbed. Jamie Nordmeyer Portland, Oregon, USA
-
If Fortran was included and integrated into VS so one could easily call Fortran routines from C++ and vise-versa would be really cool for me. I have a *large* collection of FORTRAN/C++ routines which I currently use in this manner with gcc. It would be nice to use this stuff on Win32 as well. Anybody used Fortran-90 ? Robert. sonork ID: 100.9940
Heaven help you if you are trying to call Fortran routines from C++, and vice versa. It seems just about every data type is passed or interpereted differently between the languages (strings are the worst.) If you don't get it *exactly* right, you are toast. X| X| X| There is (or was) a Fortran compiler that did integrate right into Visual Studio (I believe it was Digital/Compaq Fortran). But that didn't help the problems above. The early bird may get the worm, but the second mouse gets the cheese.
-
I'm waiting for Scheme.NET. :-D The early bird may get the worm, but the second mouse gets the cheese.
-
Navin wrote: I have no idea why anyone would use Fortran.NET As a really cruel form of capital punishment. Nish Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
Nish [BusterBoy] wrote: Navin wrote: I have no idea why anyone would use Fortran.NET As a really cruel form of capital punishment. Nah. That'll be COBOL.NET. :omg: Fortran can't rank any higher than corporal, surely? Andy Metcalfe - Sonardyne International Ltd
Trouble with resource IDs? Try the Resource ID Organiser Add-In for Visual C++ 5.0/6.0
"I'm just another 'S' bend in the internet. A ton of stuff goes through my system, and some of the hairer, stickier and lumpier stuff sticks." - Chris Maunder (I just couldn't let that one past ;)) -
If Fortran was included and integrated into VS so one could easily call Fortran routines from C++ and vise-versa would be really cool for me. I have a *large* collection of FORTRAN/C++ routines which I currently use in this manner with gcc. It would be nice to use this stuff on Win32 as well. Anybody used Fortran-90 ? Robert. sonork ID: 100.9940
Robert Dickenson wrote: If Fortran was included and integrated into VS so one could easily call Fortran routines from C++ and vise-versa would be really cool for me. This is the whole point of Fortran .NET. Not only can you call Fortran functions from C++ (and vice versa) but you can create a C++ class that inherits from a Fortran class. I spent way too many of my finest years battling to get Fortran and C to talk to one another. cheers, Chris Maunder
-
Check this list out! COBOL, Mercury, Python, Component Pascal, Mondrian, RPG, Dyalog, APL, Oberon, Scheme, Eiffel, Pascal, SmallTalk, Fortran, Perl, Standard ML yeah baby! cheers, Chris Maunder
-
Nish [BusterBoy] wrote: If it works, that would be fun; good fun indeed! Actually it does. We're planning to give out an internal beta to some selected customers. If you are interested let me know. I'll include you in the list. // Fazlul
Get RadVC today! Play RAD in VC++ http://www.capitolsoft.com
Fazlul Kabir wrote: If you are interested let me know. I'll include you in the list. Yes. I would be interested. Nish Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
-