appnet-org / compiler

AppNet Compiler
https://appnet.wiki/
Apache License 2.0
7 stars 2 forks source link

Better type annotation syntax is needed. #25

Open jokerwyt opened 2 months ago

jokerwyt commented 2 months ago

For example, get_rpc_header(rpc, 'appnet-rpc-id', rpc_id) needs to know the type of rpc_id to generate C++ type cast code. for now we just use:

rpc_id = 0
rpc_id = get_rpc_header(rpc, 'appnet-rpc-id', rpc_id)

which is not that pleasing to the eye.