Skip to content

Commit a0f2d22

Browse files
committed
initial commint
1 parent b1ddeab commit a0f2d22

3 files changed

Lines changed: 29 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

src/cls/Ideal/ObjectScript.cls

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Class Ideal.ObjectScript
2+
{
3+
4+
Parameter Version = 1.0;
5+
6+
ClassMethod HelloWorld() As %String
7+
{
8+
return "Hello World!"
9+
}
10+
11+
ClassMethod SystemInfo() As %String
12+
{
13+
return $zv
14+
}
15+
16+
ClassMethod WriteToDevice()
17+
{
18+
write ..HelloWorld(),!
19+
write "The version of the class: "_..#Version,!
20+
write "The version of the system: "_..SystemInfo()
21+
}
22+
23+
}

src/isc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"compileList": "Ideal*.CLS",
3+
"projectName": "ideal",
4+
"git": 0
5+
}

0 commit comments

Comments
 (0)