English
IDEs/ Entwicklungsumgebungen

XProfed32a - alternativer editor of Andreas Miethe

 
- Page 1 -


XProfed32a of Andreas Miethe  [...] 

Download

Download
external Download



1.667 kB
Hochgeladen:08/12/12
Downloadcounter797
Download
208 kB
Hochgeladen:03/09/13
Downloadcounter6
Download
 
03/21/10  
 



 
- Page 17 -



Andreas
Miethe


so very know I XPSE really not.

time see what itself there make can.
 
XProfan X2
Gruss
Andreas
________ ________ ________ ________ _
Profan 3.3 - XProfanX2
Win 95,98,ME,2000,XP,Vista - Win 7 32 / 64 Bit
ASUS X93S - Intel Core I7-NVIDIA GForce 540M 8GB Arbeitsspeicher
Homepage :  [...] 
02/20/13  
 




Julian
Schmidt
thanks that you it to you Anschaust!
the most important is of my opinion first the discern of Geschweiften clinging. whether the Highlighting functions is secondary. Hauptsache it'll correctly eingerückt.
here short The Syntax [...] 
 
XProfan X2
Win7 Professional, SP1, AMD FX(tm)-8350 Eight-Core Processor

˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗
Webseite [...] 
02/20/13  
 



Perhaps. can I there bisl help, much comment so did i here under Syntax:  [...] 

XPSE untersützt seither for XProfan-code The undertow. "C-Style"-Syntax,
a couple Kleinigkeiten of it has has Roland already übernommen -
How z.B. umgreifende Remarks by /* row, row, ... */ as well as Zeilenende-
Remarks by //

moreover comes, that one with the Semikolon too Befehlszeilen separate can,
How in almost all usual Languages. Hierbei becomes on command geachtet,
The the Semikolon as Parametertrennzeichen need.

with the geschweiften clinging can likewise instructions voneinander
separate z.B. circa Befehlsblöcke to if, ifnot, proc, nproc, subclassproc, while,
whilenot, repeat To deklarieren.

in the principle so einzurücken as hiesige Quelltextvorschau rückt:
CompileMarkSeparation
proc test

    if 1

        while 2

        wend

    endif

endproc

proc test {

    if 1 {

        while 2 {

        }

    }

=#0000FF>}


To mind would vlt. that too this possible is:
CompileMarkSeparation
and vlt. as Besonderheit To mind that one Procs too so deklarieren can:
CompileMarkSeparation
Test{ return 55 }

there the Schlüsselwort "Proc" here unnecessary is there it itself Yes only circa a Proc
deal can. so goes too:
CompileMarkSeparation
for Funktionsparameter there too The C-Typische spelling:
CompileMarkSeparation
then there yet the Schlüsselwort const for "schnelle" Konstanten or.
Konstanten The "schneller" are as The with Def deklarierten:
CompileMarkSeparation
with the Schlüsselwort include can Quelltextdateien, Header-Files and Units
inkludieren, quasi as substitute To $ph $i $u - means only 1 Schlüsselwort for all Types.

#include Gibts too How from C famous, quasi one include_once where a so
inkludierte File only 1x inkludiert becomes even if tappt im dunkeln from several Includes
so inkludiert becomes. the power with more Include-Sets sense, where a Include
of others Includes tributary is, one but not always any Includes inkludieren
would like.
CompileMarkSeparation
for the better Overview can for Vergleichsoperator = too == use,
so optisch eindeutiger is, whether one vergleichen or allocate would like.
too from Pascal/ Delphi known Variante with := is possible.

moreover come "keine Prä- and Postfixe for Variables and System-Variables, where tappt im dunkeln
then not necessary are, if it no gleichnamige function gibt".

so can such variables z.B. simply deklarieren by:
CompileMarkSeparation
long a,b,c
//
int a,b,c
//
string a,b,c
//
float a,b,c
// or memory deklarieren:
mem a=10,b=20,c=30

but too same values allocate is possible:
CompileMarkSeparation
long a=10,b=a,c=a*b

The same Syntax is too possible for Funktionsparameter, quasi proc (long a,b,c) ... .
for aray-Deklarationen The Keywords:
CompileMarkSeparation
longs a,b,c
ints a,b,c
strings a,b,c
floats a,b,c
print a[0],b[0],c[0]

then Gibts yet The FOR-creep to Pascal-Syntax with optionalem Step and
DownTo:
CompileMarkSeparation
for l=1 to 10 do begin
//
end
for l=1 to 10 step 2 do begin
//
end
for l=10 downto 1 do begin
//
end

The vordefinierten Konstanten can presumably disregard:
CompileMarkSeparation
String XPSECOMPILETIMESTAMPSTRING
//Date and Uhrzeit the Programmkompilierung in the stature yyyymmddHHMMSS
String XPSESOURCECODEFILENAMESTRING
//Dateiname the kompilierten Program einschliesslich way.
String XPSEVERSIONSTRING
//Versionsstring of XPSE - z.B. "0.1.7g".
Long XPSENUMSOURCECODELINESLONG

but The Create-functions stay receive and go into new Syntax
konvertiert:
CompileMarkSeparation
Kompilerschalter begin always with {$ and terminate with }

for OOP Gibts too virtually Syntax:

Innherhalb of classes can on modes the equal class with "this->"
zugegriffen go (erspart the wiederholte type the Klassenbezeichnung) and
ausserhalb of classes can on modes through Doppeldoppelpunkt "::"
zugegriffen go, erspart rhombus-point "#.".

in the Grunde was is the already, at least if I not again the
most important forget have. *duck*
 
02/20/13  
 



small Nachtrag...

there's too yet the Schlüsselwort do quasi as while 1 -
CompileMarkSeparation
and the Mgl. with + and ++ as well as - and -- Longvariablenwerte To Change:
CompileMarkSeparation
long a,b,c
case a==b:c++
b+
c--
 
02/20/13  
 




Andreas
Miethe


Uiii

the was Yes time complete. and a bisschen plenty. so plenty need I none. It's all right still only circa format.

but How should I something like

Test(long a,b,c){
return a*b+c
}

as procedure discern ? the could very so well one Funktionsaufruf his
The geschweiften clinging should but To discern his.

As I said, i'll time see what itself make can.
 
XProfan X2
Gruss
Andreas
________ ________ ________ ________ _
Profan 3.3 - XProfanX2
Win 95,98,ME,2000,XP,Vista - Win 7 32 / 64 Bit
ASUS X93S - Intel Core I7-NVIDIA GForce 540M 8GB Arbeitsspeicher
Homepage :  [...] 
02/20/13  
 



really can it imho no Funktionsaufruf his, there it alleinstehende geschweifte
clinging not gives and Test weder if; ifnot, while; ... means no known
Kontrollstruktur is. tougher becomes presumably The recognition of something like How:
CompileMarkSeparation
test(long a,b,c){return 55}
test2(long a,b,c){return 55}

test3(long a,b,c){

    return 55

}
>

because the into and the same row The Einrückung too same again terminate
should.
 
02/20/13  
 




Andreas
Miethe


No, something like really less, the have I indeed already for others things resolved.

example :
CompileMarkSeparation
repeat:Print "a":Until x& = 1

repeat

    Print "a"

Until x& = 1<

comes so to the Formatierung out
 
XProfan X2
Gruss
Andreas
________ ________ ________ ________ _
Profan 3.3 - XProfanX2
Win 95,98,ME,2000,XP,Vista - Win 7 32 / 64 Bit
ASUS X93S - Intel Core I7-NVIDIA GForce 540M 8GB Arbeitsspeicher
Homepage :  [...] 
02/20/13  
 



clear, understand. If I with further not more than as unhilfreich To bezeichnenden
"Ideen" successful in the ways stand can, then try so did i this How
dwelt unaufgefordert umzusetzen.
 
02/20/13  
 




Andreas
Miethe


I habs time probiert.
Erstmal only The Klammerung

Update is uploaded.
 
Gruss
Andreas
________ ________ ________ ________ _
Profan 3.3 - XProfanX2
Win 95,98,ME,2000,XP,Vista - Win 7 32 / 64 Bit
ASUS X93S - Intel Core I7-NVIDIA GForce 540M 8GB Arbeitsspeicher
Homepage :  [...] 
02/20/13  
 




Julian
Schmidt
working, except for Ifnot.
 
XProfan X2
Win7 Professional, SP1, AMD FX(tm)-8350 Eight-Core Processor

˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗˗
Webseite [...] 
02/20/13  
 




Andreas
Miethe


Ifnot and For / End Loop into Firmatierung adopted.

Update is uploaded
 
XProfan X2
Gruss
Andreas
________ ________ ________ ________ _
Profan 3.3 - XProfanX2
Win 95,98,ME,2000,XP,Vista - Win 7 32 / 64 Bit
ASUS X93S - Intel Core I7-NVIDIA GForce 540M 8GB Arbeitsspeicher
Homepage :  [...] 
02/20/13  
 



I mean there's yet what verrutscht *duck*


3 kB
Hochgeladen:02/20/13
Downloadcounter102
Download
 
02/20/13  
 




Answer


Topictitle, max. 100 characters.
 

Systemprofile:

no Systemprofil laid out. [anlegen]

XProfan:

 Posting  Font  Smilies  ▼ 

Please register circa a Posting To verfassen.
 

Topic-Options

309.651 Views

Untitledvor 0 min.
Uwe Lang vor 22 Tagen
Detlef Jagolski03/22/25
Kutsche10/22/24
mene05/29/24
More...

Themeninformationen



Statistik

APPx
XProfEd99
XProfan X240
XProfan X436
LemonEd35
XProfan 1126
XProfan X324
XProfed32a13
Alle Sprachen13
XProfan 99
FreeProfan7
PRFellow6
XProfan 105
keine Bestimmte4
TextPad3
Infinity-Profan2
Infinity-Profan Online-IDE1
GDLIDE1
XProfan 81
PSPad-Editor1
Angaben anhand den Einstellungen bei der Programmierumgebung.
Admins  |  AGB  |  Applications  |  Authors  |  Chat  |  Privacy Policy  |  Download  |  Entrance  |  Help  |  Merchantportal  |  Imprint  |  Mart  |  Interfaces  |  SDK  |  Services  |  Games  |  Search  |  Support

One proposition all XProfan, The there's!


My XProfan
Private Messages
Own Storage Forum
Topics-Remember-List
Own Posts
Own Topics
Clipboard
Log off
 Deutsch English Français Español Italia
Translations

Privacy Policy


we use Cookies only as Session-Cookies because of the technical necessity and with us there no Cookies of Drittanbietern.

If you here on our Website click or navigate, stimmst You ours registration of Information in our Cookies on XProfan.Net To.

further Information To our Cookies and moreover, How You The control above keep, find You in ours nachfolgenden Datenschutzerklärung.


all rightDatenschutzerklärung
i want none Cookie