In programming languages, literals are textual representations of values in the source code. This is a syntactical concept.
Some examples:
7 # integer literalIn programming languages, literals are textual representations of values in the source code. This is a syntactical concept.
Some examples:
7 # integer literal| FROM hayd/alpine-deno:1.10.1 | |
| WORKDIR /src/app | |
| ADD deps.ts ./ | |
| RUN ["deno", "cache", "deps.ts"] | |
| ADD *.ts ./ | |
| RUN ["deno", "cache", "mod.ts"] | |
| ENTRYPOINT ["deno", "run", "--unstable", "--allow-net", "--allow-hrtime", "--allow-env", "--cached-only", "--no-check", "mod.ts"] |