Git Product home page Git Product logo

gma's Introduction

gma (go-main-aggregator)

gma provide feature makes an aggregated main file from main and dependencies files.

Usecase

A most powerful use case is competitive programming. Generally, competitive programming should submit to a single file. You can isolate the main(solver) and common utility files via using gma.

Installation

go get github.com/takashabe/gma

require go1.11 or later and GO111MODULE environemnts

Usage

gma -main main.go -depends util.go,util2.go -depends util/util.go

Options

-main    require: the central file of aggregation
-depends optional: dependencies files

Example

files to use:

  • main.go
package main

import (
  "fmt"

  "github.com/takashabe/gma/example/util"
)

func main() {
  fmt.Println(util.Name)
  fmt.Println(util.Foo())
  Foo()
}
  • util.go
package main

func Foo() {}
  • util/util.go
package util

import "fmt"

const Name = "util.go"

func Foo() string {
  return fmt.Sprintf("util")
}

execute gma:

$ gma -main example/main.go -depends example/util.go -depends example/util/util.go
package main

import (
  "fmt"
)

func main() {
  fmt.Println(_util_Foo())
  Foo()
}
func Foo() {
}
func _util_Foo() string {
  return fmt.Sprintf("util")
}

gma's People

Contributors

takashabe avatar

Stargazers

Tsubasa Oizumi avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.