This website works better with JavaScript
Etusivu
Tutki
Apua
Kirjaudu sisään
pascal
/
freepascal.compiler
peilaus alkaen
https://gitlab.com/freepascal.org/fpc/source.git
Tarkkaile
2
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Wiki
Selaa lähdekoodia
+ Implemented int2str function
michael
27 vuotta sitten
vanhempi
26797c3480
commit
b097079ea6
1 muutettua tiedostoa
jossa
5 lisäystä
ja
0 poistoa
Jaettu näkymä
Näytä diff tilastot
5
0
fcl/inc/util.inc
+ 5
- 0
fcl/inc/util.inc
Näytä tiedosto
@@ -0,0 +1,5 @@
+Function IntToStr (I : Longint) : String;
+
+begin
+ Str(I,Result);
+end;