This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
pascal
/
freepascal.compiler
kopia lustrzana
https://gitlab.com/freepascal.org/fpc/source.git
Obserwuj
2
Polub
0
Forkuj
0
Pliki
Problemy
0
Wiki
Przeglądaj źródła
+ Implemented int2str function
michael
27 lat temu
rodzic
26797c3480
commit
b097079ea6
1 zmienionych plików
z
5 dodań
i
0 usunięć
Widok podzielony
Pokaż statystyki zmian
5
0
fcl/inc/util.inc
+ 5
- 0
fcl/inc/util.inc
Wyświetl plik
@@ -0,0 +1,5 @@
+Function IntToStr (I : Longint) : String;
+
+begin
+ Str(I,Result);
+end;