User:PureFox: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created programmatic, minimally informative user page.)
 
(Rewritten following a request to use my Wren modules outside the terms of the usual RC license.)
Line 1: Line 1:
Hi, I'm PureFox.
<lang go>package main


Over the past few years I've made contributions in a number of programming languages though my current focus is on Wren and Go both of which I enjoy enormously.
import "fmt"


Contributions to RC are generally available under the terms of the GNU Free Documentation License, version 1.2, unless individual contributors wish to license them under more permissive terms. Accordingly, I hereby release all my contributions to Rosetta Code - and in particular my Wren modules - under the [https://opensource.org/licenses/MIT MIT License].
type user struct{ name, lang string }

func main() {
u := user{"PureFox", "Go"}
fmt.Printf("Hello, I'm %s and my favorite language nowadays is %s.\n", u.name, u.lang)
}</lang>

Revision as of 11:17, 21 November 2020

Hi, I'm PureFox.

Over the past few years I've made contributions in a number of programming languages though my current focus is on Wren and Go both of which I enjoy enormously.

Contributions to RC are generally available under the terms of the GNU Free Documentation License, version 1.2, unless individual contributors wish to license them under more permissive terms. Accordingly, I hereby release all my contributions to Rosetta Code - and in particular my Wren modules - under the MIT License.