Rexygen
1 program
Added 2025-10-22T10:18:37Z
Model: meta-llama/llama-3.1-70b-instructTemp: 0.4
Evidence
Report issue
View issues
Aliases: Rexygen HMI
Provenance: commit c14d34a69d · authored 2025-10-22T12:18:37+02:00 · model meta-llama/llama-3.1-70b-instruct
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Rexygen HMI Example
Provenance: commit c14d34a69d · authored 2025-10-22T12:18:37+02:00 · model meta-llama/llama-3.1-70b-instruct · Temp 0.4
FUNCTION myFunction(INTEGER x, INTEGER y) RETURNS INTEGER
RETURN x + y
END FUNCTION
PROGRAM main
INTEGER a = 1
INTEGER b = 2
INTEGER c = myFunction(a, b)
PRINT c
END PROGRAM