Skip to content

Commit 3152565

Browse files
authored
Merge pull request #255 from Kiina/main
Add SQF (Status Quo Function) implementation
2 parents c9e4a98 + bc7ec50 commit 3152565

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ A: Thecoderunsfasterwhentherearenouselessspacesandnewlines.
190190
- Spanish
191191
- Standard ML
192192
- STEP-7 AWL
193+
- SQF
193194
- SQL
194195
- Squirrel
195196
- Swift

implementations/main.sqf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
is_prime = {
2+
false;
3+
};

optimized_implementations/main.sqf

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
is_prime={false;};

0 commit comments

Comments
 (0)