GoCollections/main.go

22 lines
645 B
Go
Raw Normal View History

2022-11-25 18:19:33 +08:00
/*
* Copyright (c) 2022 tursom. All rights reserved.
* Use of this source code is governed by a GPL-3
* license that can be found in the LICENSE file.
*/
2021-05-20 17:32:35 +08:00
package main
2022-04-24 16:01:22 +08:00
import (
_ "github.com/tursom/GoCollections/collections"
_ "github.com/tursom/GoCollections/concurrent"
_ "github.com/tursom/GoCollections/concurrent/collections"
"github.com/tursom/GoCollections/exceptions"
_ "github.com/tursom/GoCollections/lang"
_ "github.com/tursom/GoCollections/lang/atomic"
_ "github.com/tursom/GoCollections/util"
)
2021-05-20 17:32:35 +08:00
func main() {
2022-03-31 01:22:30 +08:00
exceptions.NewRuntimeException("test2", exceptions.DefaultExceptionConfig().SetCause(1)).PrintStackTrace()
2021-05-20 17:32:35 +08:00
}