Skip to content

Commit 24f4452

Browse files
committed
removed unused variable
1 parent 8754395 commit 24f4452

5 files changed

Lines changed: 13 additions & 2 deletions

File tree

.replit

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
run = ""
2+
entrypoint = "main.sh"
3+
4+
[agent]
5+
expertMode = true

.replit.backup

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
language = "bash"
2+
run = ""

arc.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2406,7 +2406,6 @@ A symbol can be coerced to a string.
24062406

24072407
const char* p = input.c_str();
24082408
error err;
2409-
atom result;
24102409

24112410
atom expr;
24122411
err = read_expr(p, &p, &expr);

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "arc.h"
22

3-
constexpr auto VERSION = "0.36";
3+
constexpr auto VERSION = "0.36.1";
44

55
void print_logo() {
66
printf("Arc++ %s\n", VERSION);

replit.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{ pkgs, legacyPolygott }: {
2+
deps = [
3+
pkgs.bashInteractive
4+
] ++ legacyPolygott;
5+
}

0 commit comments

Comments
 (0)