Skip to content

Commit 209c463

Browse files
authored
Merge pull request #70 from codecrafters-io/cc-1984-2
CC-1984: Change uncomment code text (2nd try)
2 parents b3952e6 + 97f21f5 commit 209c463

File tree

33 files changed

+33
-33
lines changed

33 files changed

+33
-33
lines changed

compiled_starters/cpp/src/main.cpp

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

57-
// Uncomment this block to pass the first stage
57+
// Uncomment the code below to pass the first stage the first stage
5858
//
5959
// int client_fd = accept(server_fd, reinterpret_cast<struct sockaddr*>(&client_addr), &client_addr_len);
6060
// std::cout << "Client connected\n";

compiled_starters/csharp/src/main.cs

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

7-
// Uncomment this block to pass the first stage
7+
// Uncomment the code below to pass the first stage the first stage
88
// TcpListener server = new TcpListener(IPAddress.Any, 9092);
99
// server.Start();
1010
// server.AcceptSocket(); // wait for client

compiled_starters/gleam/src/main.gleam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub fn main() {
1616
// You can use print statements as follows for debugging, they'll be visible when running tests.
1717
io.println("Logs from your program will appear here!")
1818

19-
// Uncomment this block to pass the first stage
19+
// Uncomment the code below to pass the first stage the first stage
2020
//
2121
// let assert Ok(_) =
2222
// glisten.handler(fn(_conn) { #(Nil, None) }, fn(_msg, state, _conn) {

compiled_starters/go/app/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func main() {
1414
// You can use print statements as follows for debugging, they'll be visible when running tests.
1515
fmt.Println("Logs from your program will appear here!")
1616

17-
// Uncomment this block to pass the first stage
17+
// Uncomment the code below to pass the first stage the first stage
1818
//
1919
// l, err := net.Listen("tcp", "0.0.0.0:9092")
2020
// if err != nil {

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 this block to pass the first stage
10+
// Uncomment the code below to pass the first stage the first stage
1111
//
1212
// ServerSocket serverSocket = null;
1313
// Socket clientSocket = null;

compiled_starters/javascript/app/main.js

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

6-
// Uncomment this block to pass the first stage
6+
// Uncomment the code below to pass the first stage the first stage
77
// const server = net.createServer((connection) => {
88
// // Handle connection
99
// });

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fun main(args: Array<String>) {
44
// You can use print statements as follows for debugging, they'll be visible when running tests.
55
System.err.println("Logs from your program will appear here!")
66

7-
// Uncomment this block to pass the first stage
7+
// Uncomment the code below to pass the first stage the first stage
88
// var serverSocket = ServerSocket(9092)
99
//
1010
// // Since the tester restarts your program quite often, setting SO_REUSEADDR

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
# they'll be visible when running tests.
77
print("Logs from your program will appear here!")
88

9-
# Uncomment this to pass the first stage
9+
# Uncomment the code below to pass the first stage the first stage
1010
#
1111
# server = socket.create_server(("localhost", 9092), reuse_port=True)
1212
# server.accept() # wait for client

compiled_starters/rust/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fn main() {
55
// You can use print statements as follows for debugging, they'll be visible when running tests.
66
println!("Logs from your program will appear here!");
77

8-
// Uncomment this block to pass the first stage
8+
// Uncomment the code below to pass the first stage the first stage
99
//
1010
// let listener = TcpListener::bind("127.0.0.1:9092").unwrap();
1111
//

compiled_starters/typescript/app/main.ts

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

6-
// Uncomment this block to pass the first stage
6+
// Uncomment the code below to pass the first stage the first stage
77
// const server: net.Server = net.createServer((connection: net.Socket) => {
88
// // Handle connection
99
// });

0 commit comments

Comments
 (0)