From 8d4a2649a7718d1078a7b9732379a452ba4b23d7 Mon Sep 17 00:00:00 2001 From: Kacarott Date: Fri, 18 Feb 2022 00:00:59 +0100 Subject: [PATCH] Add buffer to prevent manipulation --- workspace/lc-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace/lc-test.js b/workspace/lc-test.js index 2aac362..da921d9 100644 --- a/workspace/lc-test.js +++ b/workspace/lc-test.js @@ -12,4 +12,4 @@ export const getSolution = () => read("./solution.lc"); export const getPreloaded = () => read("./preloaded.lc"); /** Return the contents of the preloaded file and the solution file combined */ -export const getSolutionWithPreloaded = () => getPreloaded() + "\n" + getSolution(); +export const getSolutionWithPreloaded = () => getPreloaded() + "\n_ = ()\n" + getSolution();