Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to compile "Hello World" program from README #3327

Closed
volodya-lombrozo opened this issue Aug 13, 2024 · 14 comments
Closed

Unable to compile "Hello World" program from README #3327

volodya-lombrozo opened this issue Aug 13, 2024 · 14 comments
Labels

Comments

@volodya-lombrozo
Copy link
Member

volodya-lombrozo commented Aug 13, 2024

I have the following eo program:

[args] > app
  QQ.io.stdout > @
    "Hello, world!\n"

I run

eoc dataize app

I consistently get the same error:

EO objects registered in .eoc/eo-foreign.json
Assembling into .eoc
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/app.eo:4': [4:0] no viable alternative at input '[args] > app\n  INTQQ.io.stdout > @\n    INT"Hello, world!\n"\nEXPONENTEXPONENT': "EOF"
[ERROR] The hash wasn't found for tag 130afdd1456a0cbafd52aee8d7bc612e1faac547
[ERROR] 'org.eolang.maven.ProbeMojo@375bc443' execution failed
[ERROR] The hash wasn't found for tag 130afdd1456a0cbafd52aee8d7bc612e1faac547
[ERROR] Failed to execute goal org.eolang:eo-maven-plugin:0.38.2:assemble (default-cli) on project eoc: 'org.eolang.maven.AssembleMojo@5115f590' execution failed: java.lang.IllegalStateException: org.apache.maven.plugin.MojoFailureException: 'org.eolang.maven.ProbeMojo@375bc443' execution failed: org.eolang.maven.hash.ChText$NotFound: The hash wasn't found for tag 130afdd1456a0cbafd52aee8d7bc612e1faac547 -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
The command "/usr/local/lib/node_modules/eolang/mvnw/mvnw eo:assemble -Deo.version=0.38.2 -Deo.tag=130afdd1456a0cbafd52aee8d7bc612e1faac547 --quiet -Deo.sourcesDir=/Users/lombrozo/Workspace/Playground/eo/hello -Deo.targetDir=/Users/lombrozo/Workspace/Playground/eo/hello/.eoc -Deo.outputDir=/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/classes -Deo.generatedDir=/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/generated-sources -Deo.placed=/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/eo-placed.csv -Deo.placedFormat=csv --batch-mode --color=never --update-snapshots --fail-fast --strict-checksums" exited with #1 code

Expected behaviour: Program prints "Hello world".


eoc --version  
0.21.1

System:

MacOS  Darwin Kernel Version 23.5.0 X86_64
@volodya-lombrozo
Copy link
Member Author

@yegor256 @maxonfjvipon Could you take a look, please?

Copy link

@volodya-lombrozo thanks for the report, here is a feedback:

Problems

  • The bug report requires a more detailed and precise title. For example, the title 'Unable to compile "Hello World" program from README' better describes the specific problem.
  • The report does not include information regarding the system where the bug was recreated. Such information is fundamental for debugging and resolving the issue.
  • The report fails to state whether the bug occurs consistently or intermittently. This detail is crucial for tracking and rectifying the bug.

I would recommend adding a "Steps to Reproduce" section to make the bug easier for developers to replicate.

Please fix the bug report in order it to get resolved faster.
Analyzed with gpt-4

@volodya-lombrozo volodya-lombrozo changed the title Can't compile "Hello World" program from README Unable to compile "Hello World" program from README Aug 13, 2024
@maxonfjvipon
Copy link
Member

@volodya-lombrozo should be:

# Comment here.
[args] > app
  QQ.io.stdout > @
    "Hello, world!\n"

@volodya-lombrozo
Copy link
Member Author

@maxonfjvipon Where is the difference? Why do I need to add # Comment here.?

@maxonfjvipon
Copy link
Member

maxonfjvipon commented Aug 13, 2024

@volodya-lombrozo comments are mandatory in front of top level abstract objects

@volodya-lombrozo
Copy link
Member Author

@maxonfjvipon btw, it didn't help:

cat app.eo 
# Comment here.
[args] > app
  QQ.io.stdout > @
    "Hello, world!\n"

Output:

EO objects registered in .eoc/eo-foreign.json
Assembling into .eoc
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/app.eo:1': Comment must be at least 64 characters long
[ERROR] The hash wasn't found for tag 130afdd1456a0cbafd52aee8d7bc612e1faac547
[ERROR] 'org.eolang.maven.ProbeMojo@375bc443' execution failed
[ERROR] The hash wasn't found for tag 130afdd1456a0cbafd52aee8d7bc612e1faac547
[ERROR] Failed to execute goal org.eolang:eo-maven-plugin:0.38.2:assemble (default-cli) on project eoc: 'org.eolang.maven.AssembleMojo@5115f590' execution failed: java.lang.IllegalStateException: org.apache.maven.plugin.MojoFailureException: 'org.eolang.maven.ProbeMojo@375bc443' execution failed: org.eolang.maven.hash.ChText$NotFound: The hash wasn't found for tag 130afdd1456a0cbafd52aee8d7bc612e1faac547 -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
The command "/usr/local/lib/node_modules/eolang/mvnw/mvnw eo:assemble -Deo.version=0.38.2 -Deo.tag=130afdd1456a0cbafd52aee8d7bc612e1faac547 --quiet -Deo.sourcesDir=/Users/lombrozo/Workspace/Playground/eo/hello -Deo.targetDir=/Users/lombrozo/Workspace/Playground/eo/hello/.eoc -Deo.outputDir=/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/classes -Deo.generatedDir=/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/generated-sources -Deo.placed=/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/eo-placed.csv -Deo.placedFormat=csv --batch-mode --color=never --update-snapshots --fail-fast --strict-checksums" exited with #1 code

@maxonfjvipon
Copy link
Member

@volodya-lombrozo it helps, but there's other error, please try to use --parser=0.38.4 --home-tag=0.38.4 flags

@volodya-lombrozo
Copy link
Member Author

@volodya-lombrozo comments are mandatory in front of top level abstract objects

omg... Why?
Maybe we should update README file then? What do you think?

@maxonfjvipon
Copy link
Member

@volodya-lombrozo yes, we should, we have a ticket for it

@volodya-lombrozo
Copy link
Member Author

@maxonfjvipon from this #921 :

The severity level should be warning.

Why this feature prevents the build then?

@maxonfjvipon
Copy link
Member

@volodya-lombrozo after this we made a mandatory comment a part of EO grammar, so if you miss comment - it can't be parsed

@volodya-lombrozo
Copy link
Member Author

@maxonfjvipon as for this:

@volodya-lombrozo it helps, but there's other error, please try to use --parser=0.38.4 --home-tag=0.38.4 flags

It helped, but gave the following output with many errors:

hello eoc dataize app --parser=0.38.4 --home-tag=0.38.4  
EO objects registered in .eoc/eo-foreign.json
Assembling into .eoc
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/app.eo:1': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/io/stdout.eo:29': Comment must end with dot
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/string.eo:34': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/string.eo:40': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/string.eo:43': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:33': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:36': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:39': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:42': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:45': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:66': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:69': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:72': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:75': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:78': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:81': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/bytes.eo:84': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/io/stdin.eo:29': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/io/stdin.eo:35': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/rust.eo:29': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/false.eo:29': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/false.eo:38': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/false.eo:41': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/true.eo:29': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/true.eo:38': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/true.eo:41': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:29': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:33': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:36': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:39': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:39': Comment must contain only ASCII printable characters: 0x20-0x7f
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:42': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:45': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:45': Comment must contain only ASCII printable characters: 0x20-0x7f
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:48': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:51': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:54': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:57': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/nan.eo:60': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/cage.eo:42': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/cage.eo:45': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/cage.eo:50': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:34': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:40': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:47': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:53': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:56': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:62': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:65': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:68': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:71': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/int.eo:74': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/while.eo:36': Comment must be at least 64 characters long[eo:assemble] 18s; 309 files generated so far...
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/tuple.eo:29': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/tuple.eo:31': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/tuple.eo:43': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/tuple.eo:48': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/tuple.eo:71': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/malloc.eo:29': Comment must end with dot
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/malloc.eo:108': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/malloc.eo:111': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:29': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:33': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:39': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:47': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:47': Comment must contain only ASCII printable characters: 0x20-0x7f
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:54': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:58': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:58': Comment must contain only ASCII printable characters: 0x20-0x7f
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:62': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:91': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:105': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:119': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/negative-infinity.eo:119': Comment must end with dot
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:29': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:33': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:39': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:43': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:43': Comment must contain only ASCII printable characters: 0x20-0x7f
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:47': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:55': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:55': Comment must contain only ASCII printable characters: 0x20-0x7f
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:62': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:91': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:105': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/positive-infinity.eo:119': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:34': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:70': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:77': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:77': Comment must contain only ASCII printable characters: 0x20-0x7f
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:84': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:87': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:87': Comment must contain only ASCII printable characters: 0x20-0x7f
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:94': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:97': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:100': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:103': Comment must be at least 64 characters long
[ERROR] Failed to parse '/Users/lombrozo/Workspace/Playground/eo/hello/.eoc/4-pull/org/eolang/float.eo:106': Comment must be at least 64 characters long
EO program assembled in .eoc
EO program verified in .eoc
Java sources generated in .eoc/generated-sources
Java .class files compiled into .eoc
Executable JAR created at .eoc/eoc.jar
Hello, world!

@maxonfjvipon
Copy link
Member

maxonfjvipon commented Aug 13, 2024

@volodya-lombrozo yes, it's a known problem, it'll be resolved when whole eo-runtime is well documented

@yegor256
Copy link
Member

@volodya-lombrozo I believe, it's fixed (or explained).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants