-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDOTWEB3.0PROGRAM
85 lines (44 loc) · 1.14 KB
/
DOTWEB3.0PROGRAM
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
DOTWeb3.0-Module9
===============
SYNTAX for Logic - DOTWeb3.0
------------------------------------------
<DOTWEB3>
@JRemote
<%
<! Logic of DOTWEB3.0 program !>
%>
</DOTWEB3>
DOTWeb3.0 Advanced Concepts
=====================
Like CDollar , JDollar also has same Advanced Concepts.....
Program-1:
=========
<DOTWEB3>
<IMPORT>
<PACK> MyP
{
<CLASS> Programs
{
public void main()
{
LArray root <NEW> LArray("root");
<AList> ar <NEW> <AList>();
for (int i=0;i<=1000;i++)
ar.add(i);
root.add("wilmix");
root.add("jemin");
root.add("shalom");
root.add("1010");
root.add("101");
root.add("201");
root.add(ar.StringConvert());
root.add("100000000");
//print the tree's size and contents
root.printTree();
}
}
Note: Module2 for Jdollar is called as JDollar2 also has same Advanced concepts
simillar to CDollar.
Note: for DOTWEB3.0-GDOLLAR kindly focus GDollar with same syntax and concepts.
Note: DOTWEB3.0-JAVA is simillar to java concepts only thing
is the syntax will change eg) <AList> => ArrayList in java