summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com>2023-04-23 03:12:01 +0200
committerGitHub <noreply@github.com>2023-04-23 03:12:01 +0200
commitebf199b341e9901cbd607e6d85095c11919722ec (patch)
tree2162602bb6c1484677f29dc5277e1ebd02ec90c5
parent5acdb19b6a6bc917367174c861136f39230ee86a (diff)
Delete Smalltalk.cs.st (#990)
-rw-r--r--tests/data/Smalltalk.cs.st16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/data/Smalltalk.cs.st b/tests/data/Smalltalk.cs.st
deleted file mode 100644
index c4fc595..0000000
--- a/tests/data/Smalltalk.cs.st
+++ /dev/null
@@ -1,16 +0,0 @@
-"16 lines 9 code 5 comment 2 blank"
-
-exampleWithNumber: x
- | y |
- "this is a comment"
- true & false not & (nil isNil) ifFalse: [self halt].
- y := self size + super size.
- #($a #a 'a' 1 1.0)
- do: [ :each |
-
- "This is
- a multiline
- comment"
- Transcript show: (each class name);
- show: ' '].
- ^x < y