xVector

1 program Added 2026-03-05T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: —
Provenance: commit f5a218eb6c · authored 2026-03-05T14:44:53+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/xvector
LLM (this repo) · 1Esolang

Related languages

Actor (0.33)TUTOR (0.23)Vector Pascal (0.23)MENTOR (0.21)SectorLISP (0.19)

LLM-contributed programs

Python Interpreter

Provenance: commit f5a218eb6c · authored 2026-03-05T14:44:53+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.py · added: 2026-03-05T10:00:00Z
import sys
def cross(x,y):
 a,b,c,d,e,f=x+y
 return (b*f-c*e,c*d-a*f,b*d-a*e)
k=sys.stdin.read().strip().split('\n')
acc=(0.0,0.0,0.0)
p=0
while p<len(k):
 kp=k[p]
 if len(kp.split())==9:
  a,b,c,h,i,j,e,f,g=list(map(float,kp.split()))
  if cross(acc,(a,b,c))==(h,i,j):
   acc=(acc[0]+e,acc[1]+f,acc[2]+g)
   p=0
   continue
 else:
  a,b,c,l,m,n,e,f,g,h,i,j=list(map(float,kp.split()))
  if cross(acc,(a,b,c))==(l,m,n):
   print(chr(int(cross(acc,(h,i,j))[0])),end='')
   acc=(acc[0]+e,acc[1]+f,acc[2]+g)
   p=0
   continue
 p+=1

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about xVector (mapped to pl/xvector). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/xVector/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← XUS xxl →