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
/
ps5-codegen1
/
function_call.vsl
9 lines
105 B
Plaintext
Raw
Normal View
History
Unescape
Escape
more continious examples
2022-04-02 20:15:06 +02:00
func add(a, b, c) begin
Init ps5
2022-03-31 21:23:57 +02:00
return a + b
end
func main()
begin
more continious examples
2022-04-02 20:15:06 +02:00
print add(40, 2, 4)
Init ps5
2022-03-31 21:23:57 +02:00
return 0
end