This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
from https://golang.org/src/crypto/tls/generate_cert.go | |
*/ | |
// Copyright 2009 The Go Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style | |
// license that can be found in the LICENSE file. | |
// +build ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package draft | |
import arrow.* | |
import arrow.core.* | |
import arrow.data.* | |
import arrow.syntax.option.* | |
import arrow.typeclasses.* | |
import arrow.instances.* | |
typealias Stack = Option<Nel<String>> |
OlderNewer