1 2016-06-25 07:56:09 <wumpus> well let's say the *intention* was for the language to be forth-like, e.g. opcodes such as ROLL and PICK and TUCK are from forth https://github.com/bitcoin/bitcoin/blob/master/src/script/script.h#L103
2 2016-06-25 07:57:54 <wumpus> of course there are other languages that compile to stack based bytecodes. But we don't have a high-level language that (de)compiles to/from bitcoin script, so everyone writes them as 'forth' way
3 2016-06-25 07:59:14 <wumpus> it's very uncommon to label a language based on what its bytecode looks like. Python could just as wel use a register-based bytecode without language changes. Java has Dalvik
4 2016-06-25 09:21:31 <N3TCAT> Hey coders , how can I make my own bitcoin api to send bitcoin via web ?
5 2016-06-25 09:22:05 <N3TCAT> should I install bitcoin core and handle requests with web servers
6 2016-06-25 09:22:16 <N3TCAT> ?