export const main = asl.deploy.asStateMachine(async () => {
let variable = "some var";
return {
hello: `hello ${variable}`,
};
});
export const main = asl.deploy.asStateMachine(async () => {
let variable = "some var";
return {
hello: `hello ${variable}`,
singleQuote: `hello ' + ${variable}`,
curlyBrace: `hello }{} + ${variable}`,
backSlash: `hello \\ + ${variable}`,
emoji: `hello 🙂 + ${variable}`,
};
});