云端接口socket通信测试
bin.shen
2016-11-29 810c0e3eaccd51d4584dae8f0e8375824c2cd50f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%%%-------------------------------------------------------------------
%%% @author bin.shen
%%% @copyright (C) 2016, <COMPANY>
%%% @doc
%%%
%%% @end
%%% Created : 29. Nov 2016 9:46 AM
%%%-------------------------------------------------------------------
-module(test).
-author("bin.shen").
 
%% API
-export([init/0]).
 
init() ->
  A = <<1,2>>,
  B = <<3,4,5>>,
  C = <<A/binary, B/binary>>,
  io:format("~p~n", [C]).