This website works better with JavaScript
Home
Explore
Help
Sign In
pascal
/
freepascal.compiler
mirror of
https://gitlab.com/freepascal.org/fpc/source.git
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
+ Implemented int2str function
michael
27 years ago
parent
26797c3480
commit
b097079ea6
1 changed files
with
5 additions
and
0 deletions
Unified View
Show Diff Stats
5
0
fcl/inc/util.inc
+ 5
- 0
fcl/inc/util.inc
View File
@@ -0,0 +1,5 @@
+Function IntToStr (I : Longint) : String;
+
+begin
+ Str(I,Result);
+end;