GNU Smalltalk is a free implementation of the Smalltalk-80 language. It runs on most POSIX compatible operating systems (including GNU/Linux, of course), as well as under Windows. Smalltalk is a dynamic object-oriented language, well-versed to scripting tasks.

learn more… | top users | synonyms

3
votes
1answer
60 views

Smalltalk: Checking if a method belongs to a class (or its inheritance hierarchy)

Is there a smalltalk message that will answer with a boolean value if a given method (example: passed with #aMethod) belongs to a given class (or its hierarchy)? I want to say something like — (self ...
5
votes
1answer
61 views

Why GNU Smalltalk uses brackets for method bodies?

In GNU Smalltalk manual it is written that: Unlike other Smalltalks, method statements are inside brackets. So I'm wondering, why there would be such an arbitrary deviation from Smalltalk-80?
4
votes
3answers
76 views

Defining methods with double greater than sign (>>) in Smalltalk

In the book Smalltalk Best Practice Patterns from Kent Beck, the double greater sign (>>) is used to define methods like this: Point class>>x: xNumber y: yNumber ^self new ...
1
vote
2answers
60 views

Smalltalk own new method

Object subclass: Node [ |value| new [ Transcript show: 'Test'. value := 6. ] getValue [ ^value. ] set:sth [ value := sth. ] ] ...
0
votes
1answer
48 views

vwnt pop up in smalltalk

When I try to open my smalltalk project file vwnt pops up. The project wont open. I did save the project properly last time I was working on it. Please help if anyone know how to resolve this issue.
0
votes
1answer
96 views

Troubles with installing gnu smalltalk

im trying to install gnu smalltalk on ubuntu, i downloaded smalltalk from ftp://ftp.gnu.org/gnu/smalltalk and i extracted the folder on the desktop. When i'm into the smalltalk folder and i write ...
3
votes
4answers
1k views

Smalltalk with GUI on Mac OS X Lion (10.7)

I need some smalltalk with GUI for my homework, and I'm running Mac OS X Lion (10.7). I've seen that unix users usually use GNU Smalltalk and GTK+. I've tried to install them from different versions ...
1
vote
1answer
371 views

Basic Smalltalk Subclass

I am trying to create an extremely simple Vector class as a subclass of Array in Smalltalk. My code to create the class looks like this: Array subclass: #Vector Vector comment: 'I represent a Vector ...
3
votes
4answers
417 views

Smalltalk public methods vs private/protected methods

I noticed that the Smalltalk language has no concept of private/protected methods. All methods are public. Coming from a Java/C++ background, I've thought of this as a fundamental weakness in the ...
1
vote
1answer
173 views

Undocumented getopt in Smalltalk

I'm writing a command line app that encrypts passwords and decrypts password hashes. The docs for Getopt provide no examples, so I have no idea how to use the Getopt class. A few clues are scattered ...
2
votes
2answers
111 views

How do I get the current module/script/file name in GNU Smalltalk?

GNU Smalltalk omits the script name in argv. #!/usr/bin/env gst -f | argv program | argv := Smalltalk arguments. (argv size) > 0 ifTrue: [ program := argv at: 1. Transcript show: ...
8
votes
1answer
407 views

Python's if __name__==“__main__” idiom for GNU Smalltalk?

Does such a thing exist? Ruby: if __FILE__ == $0 main end Perl: unless(caller) { main; } Lua: if type(package.loaded[(...)]) ~= "userdata" then main(arg) else module(..., ...
3
votes
2answers
355 views

A Smalltalk implementation with the perfect feature set

I prefer interfacing with programming languages through a standard bash terminal. While Squeak and Pharo are well documented, they don't seem to have a CLI, just a VM GUI. GNU Smalltalk and Slate ...
5
votes
2answers
178 views

What is the correct way to test Unicode support in a Smalltalk implementation?

Given any Smalltalk flavor, how should I proceed to check if Unicode is supported? In case of not having support, how can I detect at which level is missing (VM, font, Converter, etc)?
0
votes
1answer
118 views

Why is #at:put: in GNU Smalltalk message of SmallInteger?

While playing around with the Array class in GNU Smalltalk, I was suprised that the #at:put: message belongs to the class SmallInteger instead of the class Array (or any other super class of Array). ...
2
votes
1answer
144 views

How to look at image code in GNU Smalltalk?

how can I look at class / message code from within the GST command line interface? I only know the #inspect message, but this shows only a definition or summary of the object, not the code. Thank you ...
2
votes
3answers
307 views

GNU Smalltalk: Problem with Example in Tutorial (Object creation)

I tried to run the example of GNU Smalltalk in the documentation but ran into an issue. Object subclass: Account [ | balance | new [ | r | r := super new. r init. ^r ] init [ ...
1
vote
1answer
201 views

how can I set a breakpoint in squeak code?

Hey, friends, Squeak is powerful, I knows that the Debugger in squeak played a central role, now I wanner to set a breakpoint in squeak code, should be self: halt, My problem is that how can I ...
2
votes
3answers
139 views

reading smalltalk code from gst prompt

This is simple GNU Smalltalk question. Sorry, but just could not find how to do this. I'm playing with gnu smalltalk, I know I can do % gst <file-name> but if I already in gst> prompt, how ...
2
votes
4answers
779 views

Smalltalk and Assertions

Tryng out some smalltalk + TDD + "good practices" I've run into a kinda ugly block: How do I do an assertion in GNU Smalltalk? I'm just looking for a simple ifFalse: [Die] kind of thing