Files
tp2-vsl-pds/tests/fragment2/call2.vsl
2025-03-27 14:18:48 +01:00

5 lines
94 B
Plaintext

PROTO INT plus(x,y)
FUNC VOID main() PRINT "1+3 = " ,plus(1,3)
FUNC INT plus(x,y) RETURN x+y