sample typst file
one.typ
22 lines 416 B view raw
1= Introduction 2Our concept suggests three 3ways that A-Mail can be best 4utilized. 5 6- First is to reduce the 7 probability of the failure of 8 a space mission. This problem 9 is known as the Mars problem 10 and suggests problems with 11 human communication. 12 13``` 14import Data.Maybe 15 16axis :: [(Int, Int)] 17axis = [(0, 1), (1, 0), (0, -1), (-1, 0)] 18 19mag (_, x, y) = abs x + abs y 20``` 21 22#raw("fn " + "main() {}", lang: "rust")