FTP: Difference between revisions

140 bytes added ,  4 years ago
(Added Erlang implementation for the FTP task)
Line 113:
Erlang implementation using ftp module.
<lang erlang>
%%%-------------------------------------------------------------------
%%% To execute in shell, Run the following commands:-
%%% >c("ftp_example").
%%% >ftp_example:run().
%%%-------------------------------------------------------------------
 
-module(ftp_example).
 
Line 155 ⟶ 156:
ftp:close(Pid).
</lang>
 
 
=={{header|Go}}==