We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1ddeab commit a0f2d22Copy full SHA for a0f2d22
3 files changed
.gitignore
@@ -0,0 +1 @@
1
+.DS_Store
src/cls/Ideal/ObjectScript.cls
@@ -0,0 +1,23 @@
+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
@@ -0,0 +1,5 @@
+ "compileList": "Ideal*.CLS",
+ "projectName": "ideal",
+ "git": 0
0 commit comments