Skip to content

Commit 45dec68

Browse files
authored
Merge pull request #166 from codecrafters-io/andy/fix-2
Fix uncomment code text
2 parents a494811 + 7a1a2dd commit 45dec68

File tree

40 files changed

+90
-90
lines changed

40 files changed

+90
-90
lines changed

compiled_starters/c/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ int main(int argc, char *argv[]) {
2020
// You can use print statements as follows for debugging, they'll be visible when running tests.
2121
fprintf(stderr, "Logs from your program will appear here!\n");
2222

23-
// Uncomment the code below to pass the first stage the first stage
23+
// TODO: Uncomment the code below to pass the first stage
2424
//
2525
// if (mkdir(".git", 0755) == -1 ||
2626
// mkdir(".git/objects", 0755) == -1 ||

compiled_starters/cpp/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ int main(int argc, char *argv[])
1212
// You can use print statements as follows for debugging, they'll be visible when running tests.
1313
std::cerr << "Logs from your program will appear here!\n";
1414

15-
// Uncomment the code below to pass the first stage the first stage
15+
// TODO: Uncomment the code below to pass the first stage
1616
//
1717
// if (argc < 2) {
1818
// std::cerr << "No command provided.\n";

compiled_starters/csharp/src/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
if (command == "init")
1616
{
17-
// Uncomment the code below to pass the first stage the first stage
17+
// TODO: Uncomment the code below to pass the first stage
1818
//
1919
// Directory.CreateDirectory(".git");
2020
// Directory.CreateDirectory(".git/objects");

compiled_starters/go/app/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func main() {
1717

1818
switch command := os.Args[1]; command {
1919
case "init":
20-
// Uncomment the code below to pass the first stage the first stage!
20+
// TODO: Uncomment the code below to pass the first stage!
2121
//
2222
// for _, dir := range []string{".git", ".git/objects", ".git/refs"} {
2323
// if err := os.MkdirAll(dir, 0755); err != nil {

compiled_starters/haskell/app/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ main = do
1717
-- You can use print statements as follows for debugging, they'll be visible when running tests.
1818
hPutStrLn stderr "Logs from your program will appear here"
1919

20-
-- Uncomment the code below to pass the first stage first stage
20+
-- TODO: Uncomment the code below to pass the first stage
2121
-- let createParents = True
2222
-- createDirectoryIfMissing createParents ".git"
2323
-- createDirectoryIfMissing createParents (".git" </> "objects")

compiled_starters/java/src/main/java/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public static void main(String[] args){
77
// You can use print statements as follows for debugging, they'll be visible when running tests.
88
System.err.println("Logs from your program will appear here!");
99

10-
// Uncomment the code below to pass the first stage the first stage
10+
// TODO: Uncomment the code below to pass the first stage
1111
//
1212
// final String command = args[0];
1313
//

compiled_starters/javascript/app/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const path = require("path");
44
// You can use print statements as follows for debugging, they'll be visible when running tests.
55
console.error("Logs from your program will appear here!");
66

7-
// Uncomment the code below to pass the first stage the first stage
7+
// TODO: Uncomment the code below to pass the first stage
88
// const command = process.argv[2];
99
//
1010
// switch (command) {

compiled_starters/kotlin/app/src/main/kotlin/App.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fun main(args: Array<String>) {
1111
}
1212

1313
if (args[0] == "init") {
14-
// Uncomment the code below to pass the first stage the first stage
14+
// TODO: Uncomment the code below to pass the first stage
1515
//
1616
// val gitDir = File(".git")
1717
// gitDir.mkdir()

compiled_starters/python/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def main():
66
# You can use print statements as follows for debugging, they'll be visible when running tests.
77
print("Logs from your program will appear here!", file=sys.stderr)
88

9-
# Uncomment the code below to pass the first stage the first stage
9+
# TODO: Uncomment the code below to pass the first stage
1010
#
1111
# command = sys.argv[1]
1212
# if command == "init":

compiled_starters/ruby/app/main.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# You can use print statements as follows for debugging, they'll be visible when running tests.
22
$stderr.puts "Logs from your program will appear here!"
33

4-
# Uncomment the code below to pass the first stage the first stage
4+
# TODO: Uncomment the code below to pass the first stage
55
#
66
# command = ARGV[0]
77
# case command

0 commit comments

Comments
 (0)