This file contains 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
const Heading = function(weight, text) { | |
this.weight = weight; | |
this.text = text | |
}; | |
const Node = function(heading, children) { | |
this.heading = heading; | |
this.children = children; | |
}; | |
/** |
This file contains 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
; ---------------------------------------------------------------------------------------- | |
; "Hello, World" in Assembly. | |
; *Runs on 64-bit Linux only. | |
; | |
; $ nasm -felf64 hello.asm -o hello.o && ld hello.o -o hello && rm hello.o && ./hello | |
; ---------------------------------------------------------------------------------------- | |
global _start | |
section .text |
This file contains 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
env: | |
TERM: xterm-256color | |
window: | |
decorations: full | |
opacity: 0.9 | |
dynamic_title: true | |