We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53f93dc commit 3994d9dCopy full SHA for 3994d9d
4 files changed
βtestdata/main.goβ
@@ -0,0 +1,7 @@
1
+package main
2
+
3
+import "fmt"
4
5
+func main() {
6
+ fmt.Println("Hello, World!")
7
+}
βtestdata/results.txtβ
@@ -0,0 +1,9 @@
++--------+-----+-------+
+| Title | LOC | Files |
+| Tests | 6 | 2 |
+| Rust | 4 | 1 |
+| Go | 8 | 1 |
+| Python | 2 | 1 |
8
+| Total | 24 | 4 |
9
βtestdata/tests/main.pyβ
@@ -0,0 +1 @@
+print("Hello world!")
βtestdata/tests/main.rsβ
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello World!");
0 commit comments