From f895cabf52336db0f2a259bbe6fae6e6fc81c98a Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 10 Oct 2021 19:46:42 +0200 Subject: cc: work on int, char types --- miniany/test1.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'miniany/test1.c') diff --git a/miniany/test1.c b/miniany/test1.c index 9c971ca..2358298 100644 --- a/miniany/test1.c +++ b/miniany/test1.c @@ -2,6 +2,7 @@ void main( ) { + char c; int i; int j; int k; @@ -37,4 +38,6 @@ void main( ) putint( i ); i = i+1; } while( i <= 5 ); + + c = 42; } -- cgit v1.2.3-54-g00ecf