Skip to content

Instantly share code, notes, and snippets.

View JaydenLee1116's full-sized avatar
🔨
smite

Jayden JaydenLee1116

🔨
smite
View GitHub Profile
@JaydenLee1116
JaydenLee1116 / polygonfortest.js
Created April 19, 2023 05:36 — forked from crongro/polygonfortest.js
test code source
export const printExecutionSequence = function() {
console.log(executionSequence.printAsStr());
return executionSequence.printAsStr();
}
export const executionSequence = (function() {
const sequence = [];
return {
update(str) {sequence.push(str);},
printAsStr() {