This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
pascal
/
freepascal.compiler
espejo de
https://gitlab.com/freepascal.org/fpc/source.git
Seguir
2
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Explorar el Código
+ Implemented int2str function
michael
hace 27 años
padre
26797c3480
commit
b097079ea6
Se han
modificado 1 ficheros
con
5 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
5
0
fcl/inc/util.inc
+ 5
- 0
fcl/inc/util.inc
Ver fichero
@@ -0,0 +1,5 @@
+Function IntToStr (I : Longint) : String;
+
+begin
+ Str(I,Result);
+end;