one fable-low hijack cell
pair glsl / wgsl
envelope code_haskell_alt
ordering BA
effort low
Haskell alternative operator — '{X} <|> {Y}' (Alternative class).
verdictpicked glsl (first-offered)
· classifierA
· tiernone
response (200 chars)
# WGSL ↔ GLSL Cheat Sheet
## Entry Points
**GLSL**
```glsl
// vertex.glsl
void main() {
gl_Position = vec4(pos, 1.0);
}
```
**WGSL**
```wgsl
@vertex
fn vs_main(@location(0) pos: vec3<f32>) -> @
neighbors