Include a file: Difference between revisions

no edit summary
(→‎{{header|Rust}}: revert of complex description)
No edit summary
Line 470:
 
In gambas, files are added to the project via the project explorer main window which is a component of the integrated development environment.
 
=={{header|Gambas}}==
 
Here a file is loaded into a variable
<lang gambas>Public Sub Form_Open()
Dim sFile As String
 
sFile = File.Load("FileToLoad")
 
End
</lang>
 
=={{header|GAP}}==
Anonymous user