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
| ### A Pluto.jl notebook ### | |
| # v0.12.10 | |
| using Markdown | |
| using InteractiveUtils | |
| # This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error). | |
| macro bind(def, element) | |
| quote | |
| local el = $(esc(element)) |
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
| yum -y install texlive texlive-latex texlive-xetex | |
| yum -y install texlive-collection-latex | |
| yum -y install texlive-collection-latexrecommended | |
| yum -y install texlive-xetex-def | |
| yum -y install texlive-collection-xetex | |
| Only if needed: | |
| yum -y install texlive-collection-latexextra |
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
| ; Exemplo de um Hello World em Assembly | |
| ; ld -m elf_i386 -s -o hello hello.o | |
| section .text align=0 | |
| global _start | |
| mensagem db 'Hello world', 0x0a | |
| len equ $ - mensagem |