-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathinfo.erl
More file actions
45 lines (35 loc) · 755 Bytes
/
info.erl
File metadata and controls
45 lines (35 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
%% This source code and work is provided and developed by DXNN Research Group WWW.DXNNResearch.COM
%%
%Copyright (C) 2009 by Gene Sher, DXNN Research Group, CorticalComputer@gmail.com
%All rights reserved.
%
%This code is licensed under the version 3 of the GNU General Public License. Please see the LICENSE file that accompanies this project for the terms of use.
-module(info).
-include("records.hrl").
-compile(export_all).
i()->
io:format("Available commands:
list_species()
list_populations()
population()
specie()
view_dx()
view_cx()
list_dx()
stats()~n").
list_species()->
done.
list_populations()->
done.
population()->
done.
specie()->
done.
view_dx()->
done.
view_cx()->
done.
list_dx()->
done.
stats()->
done.