PureFox

Joined 25 August 2022
m
Added 3 more languages which I like and occasionally use.
(Created programmatic, minimally informative user page.)
 
m (Added 3 more languages which I like and occasionally use.)
 
(5 intermediate revisions by the same user not shown)
Line 1:
{{mylangbegin}}
<lang go>package main
{{mylang|C|Active}}
{{mylang|C++|Occasional}}
{{mylang|C#|Was MSMVP}}
{{mylang|FreeBASIC|Occasional}}
{{mylang|Go|Active}}
{{mylang|Java|Occasional}}
{{mylang|Kotlin|Inactive}}
{{mylang|MiniScript|Occasional}}
{{mylang|Python|Occasional}}
{{mylang|V (Vlang)|Occasional}}
{{mylang|Vala|Occasional}}
{{mylang|VB|Inactive}}
{{mylang|Wren|Very Active}}
{{mylangend}}
 
Retired now from paid employment.
import "fmt"
 
Although I've used a lot of languages in my time, when it comes to recreational programming, I've found that it's a lot more fun programming in a simple language such as Wren than using one of the industry heavyweights. Consequently, Wren's my main focus nowadays on this site.
type user struct{ name, lang string }
 
Contributions to RC are generally available under the terms of the GNU Free Document License 1.3 license. However, if preferred, I hereby release all or any of my contributions to Rosetta Code - and in particular my Wren modules - under the [https://opensource.org/licenses/MIT MIT License].
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,490

edits