- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只是想使用寓言将基本的helloworld.f程序转换为C++(以备以后使用更大的程序)。我收到一个错误,虽然说:
fable.read.Error: Missing END for PROGRAM:
at hello.f(1):
| program HelloWorld|
program HelloWorld
implicit none
write (*,*) 'Hello, world!' ! This is an inline comment
end program HelloWorld
最佳答案
我认为它不能解析end program HelloWorld
。尝试将其更改为end program
或仅更改为end
。
更新:确实,在Fortran 77中,所有内容都必须以with just END结尾:
The END statement indicates the end of the sequence of statements and comment lines of a program unit ( 3.5). If executed in a function or subroutine subprogram, it has the effect of a RETURN statement ( 15.8). If executed in a main program, it terminates the execution of the executable program.
The form of an END statement is:
END
An END statement is written only in columns 7 through 72 of an initial line. An END statement must not be continued. No other statement in a program unit may have an initial line that appears to be an END statement.The last line of every program unit must be an END statement.
关于c++ - 使用寓言从Fortran 77转换为C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25786543/
我有这段代码,我正在使用 Fable Elmish 和 Fable remoting 连接到 Suave 服务器。我知道服务器由于 postman 而工作,并且此代码的变体确实调用了服务器 le
我很难在 Fable 中引用无参数函数。 用这个例子: let f1 () = 1 let someRefTof1 = f1 我希望生成的 js 看起来像这样: function f1() {
我是一名优秀的程序员,十分优秀!