Skip to content

Commit faf2b8a

Browse files
committed
Initial simplistic version of guidelines
1 parent fac4b86 commit faf2b8a

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
11
# cos-guidelines
2-
COS contibutors guidelines
2+
There is required and optional parts. _Optional part to be added later_
3+
## Required part
4+
1. Only "modern" syntax permitted, dotted syntax is not generally allowed (with few exceptions)
5+
2. No short name for statements keywords allowed - use fully expanded, lower case keyword names
6+
7+
```
8+
if (expression) {
9+
do ##class(Sample).%New(initexpresion)
10+
for i=1:1:10 {
11+
write something,!
12+
}
13+
}
14+
```
15+

0 commit comments

Comments
 (0)