changed the byte code for push_intlit and push_negintlit.

added a new byte code push_charlit
This commit is contained in:
hyunghwan.chung
2016-09-14 04:56:00 +00:00
parent 0504fbde72
commit ab5dee8c77
5 changed files with 53 additions and 17 deletions

View File

@ -95,7 +95,12 @@
#method(#class) main
{
| v1 v2 |
System logNl: 'START OF MAIN'.
v2 := 'have fun'.
v2 at: 0 put: $H.
System logNl: ('START OF MAIN - ' , v2).
v1 := MyConsole output.
v1 clear.