This website requires JavaScript.
Explore
Help
Sign In
oyvindskaaden
/
TDT4205
Watch
1
Star
0
Fork
You've already forked TDT4205
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
2c8c1cbe6a
TDT4205
/
exercises
/
05
/
vslc
/
vsl_programs
/
ps2-parser
/
function_call.vsl
10 lines
111 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Init ps5
2022-03-31 21:23:57 +02:00
func add(a, b) begin
Added files to debug acoss ps
2022-04-03 22:40:33 +02:00
a := -a
Init ps5
2022-03-31 21:23:57 +02:00
return a + b
end
func main()
begin
print add(40, 2)
return 0
end