| 123456789101112131415161718192021 |
- // == code STARTING ==
- // 0000 1 OP_CONSTANT 1 'beignets'
- // 0002 | OP_DEFINE_GLOBAL 0 'breakfast'
- // 0004 2 OP_CONSTANT 3 'cafe au lait'
- // 0006 | OP_DEFINE_GLOBAL 2 'beverage'
- // 0008 3 OP_CONSTANT 5 'beignets with '
- // 0010 | OP_GET_GLOBAL 6 'beverage'
- // 0012 | OP_ADD
- // 0013 | OP_SET_GLOBAL 4 'breakfast'
- // 0015 | OP_POP
- // 0016 5 OP_GET_GLOBAL 7 'breakfast'
- // 0018 | OP_PRINT
- // 0019 | OP_RETURN
- // == code END ==
- var breakfast = "beignets";
- var beverage = "cafe au lait";
- breakfast = "beignets with " + beverage;
- print breakfast;
|