This website works better with JavaScript
Inicio
Explorar
Axuda
Iniciar sesión
pascal
/
freepascal.compiler
réplica de
https://gitlab.com/freepascal.org/fpc/source.git
Seguir
2
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Wiki
Explorar o código
+ Implemented int2str function
michael
%!s(int64=27) %!d(string=hai) anos
pai
26797c3480
achega
b097079ea6
Modificáronse 1 ficheiros
con
5 adicións
e
0 borrados
Dividir vista
Mostrar estatísticas de Diff
5
0
fcl/inc/util.inc
+ 5
- 0
fcl/inc/util.inc
Ver ficheiro
@@ -0,0 +1,5 @@
+Function IntToStr (I : Longint) : String;
+
+begin
+ Str(I,Result);
+end;