Skip to content

Commit 50413b1

Browse files
committed
dummy sol
1 parent c9fbe7e commit 50413b1

File tree

2 files changed

+22
-0
lines changed
  • benchmarks/courselab_bench/data/cmu_15-445

2 files changed

+22
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
# This script simulates what an agent might execute to solve the task
3+
4+
cat > dummy.cpp << 'EOF'
5+
#include <iostream>
6+
7+
int main() {
8+
std::cout << "Hello, World!" << std::endl;
9+
return 0;
10+
}
11+
EOF
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
# This script simulates what an agent might execute to solve the task
3+
4+
cat > dummy.cpp << 'EOF'
5+
#include <iostream>
6+
7+
int main() {
8+
std::cout << "Hello, World!" << std::endl;
9+
return 0;
10+
}
11+
EOF

0 commit comments

Comments
 (0)