⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠ You can decompress Drawing data with the command palette: ‘Decompress current Excalidraw file’. For more info check in plugin settings under ‘Saving’

Excalidraw Data

Text Elements

client

server

s = add(5,7)

int add(int x, int y) { return x + y }

app

RPC library

int add(int x, int y){ put x,y into buffer send msg extract result return result } ^PXMCY0rf

add_stub(buffer){ extract args s = add(x,y) put s in buffer send response }