Skip to content

Commit

Permalink
initial commint
Browse files Browse the repository at this point in the history
  • Loading branch information
evshvarov committed Aug 26, 2018
1 parent b1ddeab commit a0f2d22
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
23 changes: 23 additions & 0 deletions src/cls/Ideal/ObjectScript.cls
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Class Ideal.ObjectScript
{

Parameter Version = 1.0;

ClassMethod HelloWorld() As %String
{
return "Hello World!"
}

ClassMethod SystemInfo() As %String
{
return $zv
}

ClassMethod WriteToDevice()
{
write ..HelloWorld(),!
write "The version of the class: "_..#Version,!
write "The version of the system: "_..SystemInfo()
}

}
5 changes: 5 additions & 0 deletions src/isc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"compileList": "Ideal*.CLS",
"projectName": "ideal",
"git": 0
}

0 comments on commit a0f2d22

Please sign in to comment.