PureFox

Joined 25 August 2022
Rewritten following a request to use my Wren modules outside the terms of the usual RC license.
(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:
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>
9,476

edits