mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-07 21:58:03 +00:00
21 lines
290 B
Text
21 lines
290 B
Text
module [Target, Architecture, OperatingSystem]
|
|
|
|
Target : {
|
|
architecture : Architecture,
|
|
operating_system : OperatingSystem,
|
|
}
|
|
|
|
Architecture : [
|
|
Aarch32,
|
|
Aarch64,
|
|
Wasm32,
|
|
X86x32,
|
|
X86x64,
|
|
]
|
|
|
|
OperatingSystem : [
|
|
Freestanding,
|
|
Linux,
|
|
Mac,
|
|
Windows,
|
|
]
|