0114-shortassig.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
0114-shortassig.c (63B)
---
1 int
2 main()
3 {
4 short s = 1;
5 long l = 1;
6
7 s -= l;
8 return s;
9 }