Bestra/hello-go

Here's a code link

Opened this issue · 0 comments

It's a link to code in this repo

hello-go/hello.go

Lines 9 to 18 in b327158

const extract = ({ filePath, binary, os }) => {
return new Promise(async (resolve, reject) => { // one indent
const tmpPath = path.dirname(filePath); // two indents
await unzip({
from: filePath,
to: tmpPath,
});
const installer = new Installer({
engine: binary,
path: tmpPath,

and a code block

def hi
"hello"
end