modernc.org/ccgo/v3@v3.16.14/main.go (about)

     1  // Copyright 2020 The CCGO Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package main // import "modernc.org/ccgo/v3"
     6  
     7  import (
     8  	"fmt"
     9  	"os"
    10  
    11  	ccgo "modernc.org/ccgo/v3/lib"
    12  	_ "modernc.org/libc"
    13  )
    14  
    15  //TODO parallel
    16  
    17  //TODO CPython
    18  //TODO Cython
    19  //TODO gmp
    20  //TODO gofrontend
    21  //TODO gsl
    22  //TODO gtk
    23  //TODO hdf5
    24  //TODO minigmp
    25  //TODO mpc
    26  //TODO mpfr
    27  //TODO pcre
    28  //TODO pcre2
    29  //TODO quickjs
    30  //TODO redis
    31  //TODO tcl/tk
    32  //TODO wolfssl
    33  //TODO zdat
    34  //TODO zlib
    35  
    36  func main() {
    37  	if err := ccgo.NewTask(os.Args, os.Stdout, os.Stderr).Main(); err != nil {
    38  		fmt.Fprintln(os.Stderr, err)
    39  		os.Exit(1)
    40  	}
    41  }