1
Rubyのようにモジュールで静的メソッドを実行することは可能ですか?クリスタルに静的メソッドがありますか?
module Test
self.def test
puts "test"
end
end
Test::test
私は別のファイルに電話をかけた場合、コールが同じファイル(exempleに示すように)とexpecting token 'CONST', not 'test'
である場合、私はexpecting token 'EOF', not 'end'
を取得します。
私は何が間違っていますか? Crystalのモジュールに静的メソッドがありますか?