This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
the | |
the quick | |
the quick brown | |
the quick brown fox | |
quick | |
quick brown | |
quick brown fox | |
quick brown fox jumped | |
brown | |
brown fox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(module | |
(type (;0;) (func (param i32 i32) (result i32))) | |
(type (;1;) (func (result i32))) | |
(type (;2;) (func)) | |
(import "env" "__memory_base" (global (;0;) i32)) | |
(import "env" "memory" (memory (;0;) 256)) | |
(func (;0;) (type 0) (param i32 i32) (result i32) | |
local.get 0 | |
global.get 0 | |
i32.const 5242900 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LDLIBS = -llua5.3 | |
.PHONY: all | |
all: build run | |
build: build.c | |
run: run.c | |
.PHONY: clean |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: all | |
all: hello | |
hello: hello.o | |
$(LD) hello.o -o hello | |
hello.o: hello.S | |
$(AS) hello.S -o hello.o | |
.PHONY: clean |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:buster AS builder | |
ENV NODE_VERSION 10.16.0 | |
ENV YARN_VERSION 1.16.0 | |
COPY KEYS.* /tmp/ | |
WORKDIR /root | |
RUN set -ex; \ |
NewerOlder