|
Doubles & NaN
5 messages
Hi, I'm looking at creating a stanza wrapper of GSL . I've started with just the simple elementary functions. Please see this PR: https://github.com/callendorph/lbstanza-gsl/pull/1 I've successfully w
Hi, I'm looking at creating a stanza wrapper of GSL . I've started with just the simple elementary functions. Please see this PR: https://github.com/callendorph/lbstanza-gsl/pull/1 I've successfully w
|
By
carl@...
·
|
|
How to Build a Macro and Use it
14 messages
Hi, I'm coming to this project from Jitx. I'm trying to write a macro as an exercise in understanding the environment. I'm using stanza version 0.17 callendorph@aft-gpu3:~/Documents/Jitx/assert$ stanz
Hi, I'm coming to this project from Jitx. I'm trying to write a macro as an exercise in understanding the environment. I'm using stanza version 0.17 callendorph@aft-gpu3:~/Documents/Jitx/assert$ stanz
|
By
carl@...
·
|
|
Source code of non bootstrapped version of compiler?
11 messages
Hi, devs! I think it would be useful for community to have an IDE for Stanza. I've been trying to implement Eclipse based IDE using Xtext technology. I have stalled after implementation of top level f
Hi, devs! I think it would be useful for community to have an IDE for Stanza. I've been trying to implement Eclipse based IDE using Xtext technology. I have stalled after implementation of top level f
|
By
pr.dimiii@...
·
|
|
Anonymous Function Shorthand: how to refer the same argtument twice
2 messages
Hi, I have this example: val double-me = fn (x: Int) -> Int : (x * x) println(double-me(4)) how can i achieve the same by using the shorthand for this kind of function? this doesn't work because the f
Hi, I have this example: val double-me = fn (x: Int) -> Int : (x * x) println(double-me(4)) how can i achieve the same by using the shorthand for this kind of function? this doesn't work because the f
|
By
Irwin
·
|
|
Building Stanza compiler from Source
10 messages
Hello, I'm very interested in Stanza and would like to start using it on my NixOS machine. I didn't find any package for it on the nixpkgs repo so I guess I'll have to package it myself. I found that
Hello, I'm very interested in Stanza and would like to start using it on my NixOS machine. I didn't find any package for it on the nixpkgs repo so I guess I'll have to package it myself. I found that
|
By
sgn.hamilton+lbstanza@...
·
|
|
2020 Status
10 messages
Hi, all. I am thoroughly enjoying going through L.B.Stanza's codebase and interested in contributing. There appears to be semi-regualr activity in the git repo but fewer regular announcements here and
Hi, all. I am thoroughly enjoying going through L.B.Stanza's codebase and interested in contributing. There appears to be semi-regualr activity in the git repo but fewer regular announcements here and
|
By
p.z.trotter@...
·
|
|
stanza equivalent of piping operator?
3 messages
Maybe I missed it in the docs, but does stanza have something like the |> operator like in F# or Elixir to chain functions together to, for example, pass the otput of a function as the input of anothe
Maybe I missed it in the docs, but does stanza have something like the |> operator like in F# or Elixir to chain functions together to, for example, pass the otput of a function as the input of anothe
|
By
Yves Cloutier
·
|
|
New PDF Documentation Available
For those of you who prefer offline documentation, PDF versions of the Stanza reference and Tetris documentation, with clickable TOC have been added to the documentation page: bstanza_reference.pdf lb
For those of you who prefer offline documentation, PDF versions of the Stanza reference and Tetris documentation, with clickable TOC have been added to the documentation page: bstanza_reference.pdf lb
|
By
Yves Cloutier
·
|
|
Creating Structs using MyStruct(x, y, x) vs creating an object using 'new MyObject'
2 messages
First off just wanted to say I was reading chapter 4.6 - Underneath the Hood" and found it pretty interesting to understand the mechanism of how Stanza decides which method/multi to apply. Multi-file
First off just wanted to say I was reading chapter 4.6 - Underneath the Hood" and found it pretty interesting to understand the mechanism of how Stanza decides which method/multi to apply. Multi-file
|
By
Yves Cloutier
·
|
|
Architecting and Documenting Software Solutions
3 messages
Patrick, What approach(es) do you use when planning and documenting solutions to be implemented with stanza? For example, typically one starts with business requirements, then functional requirements,
Patrick, What approach(es) do you use when planning and documenting solutions to be implemented with stanza? For example, typically one starts with business requirements, then functional requirements,
|
By
Yves Cloutier
·
|
|
Web Dev in Stanza
3 messages
Are there any examples of web development using lbstanza? Has anyone done it? Or is it currently limited to doing it through using bindings to a C based web server?
Are there any examples of web development using lbstanza? Has anyone done it? Or is it currently limited to doing it through using bindings to a C based web server?
|
By
Yves Cloutier
·
|
|
PDF Version of "Reference"
Patrick, Would the documentation on http://lbstanza.org/reference.html also be available as a PDF? Regards
Patrick, Would the documentation on http://lbstanza.org/reference.html also be available as a PDF? Regards
|
By
Yves Cloutier
·
|
|
lbstanza still active?
10 messages
Hi, just checking in to see if lbstanza is still active? I check back once in a while but haven't seen anything in the news or the forum in a while.
Hi, just checking in to see if lbstanza is still active? I check back once in a while but haven't seen anything in the news or the forum in a while.
|
By
Yves Cloutier
·
|
|
Has anyone used stanza on Windows 10?
4 messages
I was compiling successfully a while back on Windows 8, but am having trouble getting set up on Windows 10. The error that I'm seeing when I try to compile helloworld.stanza is: C:\...\Downloads\wstan
I was compiling successfully a while back on Windows 8, but am having trouble getting set up on Windows 10. The error that I'm seeing when I try to compile helloworld.stanza is: C:\...\Downloads\wstan
|
By
Scott Greenwald
·
|
|
Archlinux package now available!
3 messages
I just made a package for Stanza for Archlinux! It's available from the
AUR here:
https://aur.archlinux.org/packages/stanza/
I had to hotwire things a little to get Stanza to use gcc-5. I looke
I just made a package for Stanza for Archlinux! It's available from the
AUR here:
https://aur.archlinux.org/packages/stanza/
I had to hotwire things a little to get Stanza to use gcc-5. I looke
|
By
Eric Toombs
·
|
|
Simple REPL Implementation
14 messages
Hey Patrick,
was just messing around with getting a basic repl for a toy language using S-expressions going and was hoping you could suggest improvements. I just kind of did things until it worked b
Hey Patrick,
was just messing around with getting a basic repl for a toy language using S-expressions going and was hoping you could suggest improvements. I just kind of did things until it worked b
|
By
Scott Rostrup
·
|
|
Do you foresee Stanza specializing in a programming feature?
2 messages
Hey,
I have read the main Stanza page and know the goal is to develop a language that helps simplify large architectures. But are there any thoughts as to if Stanza will specialize im any specific fea
Hey,
I have read the main Stanza page and know the goal is to develop a language that helps simplify large architectures. But are there any thoughts as to if Stanza will specialize im any specific fea
|
By
165plo@...
·
|
|
Prelim question about Stanza type interfaces
3 messages
Dear Patrick,
This is probably premature. I need to do some experiments with Stanza to
see if can duplicate some past experiments that I've done in other
programming languages, all of which have ul
Dear Patrick,
This is probably premature. I need to do some experiments with Stanza to
see if can duplicate some past experiments that I've done in other
programming languages, all of which have ul
|
By
igbi@...
·
|
|
Typed Lisp with Pattern Matching
3 messages
Sorry, I know this isn't specifically about Stanza, but I know Patrick, you're a lisp hacker.
Do you know about Shen? http://shenlanguage.org/
It's pretty interesting how it's a Lisp, but also how i
Sorry, I know this isn't specifically about Stanza, but I know Patrick, you're a lisp hacker.
Do you know about Shen? http://shenlanguage.org/
It's pretty interesting how it's a Lisp, but also how i
|
By
Yves Cloutier
·
|
|
C reference mutation
9 messages
I'm working on a curl wrapper and running into some difficulties trying to get Stanza to play along with the C pass-by-reference return argument pattern. I'm not sure if it's a limitation of my C skil
I'm working on a curl wrapper and running into some difficulties trying to get Stanza to play along with the C pass-by-reference return argument pattern. I'm not sure if it's a limitation of my C skil
|
By
Jake Russo
·
|