compiler

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.deepztream.com/compiler
Log | Files | Refs

test.sh (210B)


      1 #!/bin/bash
      2 
      3 : ${COMPILER:=../compiler}
      4 . ./test_framework
      5 
      6 name=exit        check "_start(){exit(42);}" "" "" 42
      7 name=writestring check '_start(){write(13, "Hello,\nWorld!");exit(42);}' "" "Hello,\nWorld!" 42