
482
Downloads
44
Downloads of v 1.49
11/13/2018
Last update
nuBASIC has been designed and implemented mainly for educational purposes both for C++ developers that can deal with a non-trivial example of modern C++ programming and for beginners, which may get hooked on programming.
It is suitable for simple games, educational or small business programs.
Anyone who has previously worked with other BASIC languages will quickly become accustomed to nuBASIC. Large sections of the basic constructs of nuBASIC are compatible with other BASIC dialects.
nuBASIC is also very simple. It is an excellent tool for teaching programming to a complete beginner, despite this, it has all the features of a modern programming language.
It allows you to write both classic BASIC programs (which use line numbers and GoTo or GoSub control structures) and procedure oriented programs, based on procedural programming paradigm.
Features
* Free and Open Source (distributed under GPLv2 License)
* Easy to use and simple enough for 8-year-old-child to understand
* Fully-developed procedural programming language
* Multiplatform. Runs on 32-bit and 64-bit Linux/Windows x86/amd64
* Built-in help
* Documented (English and Italian Guides)
* IDE for Windows
* Examples include Tetris, Mine Hunter, Breakout, Calculator, TicTacToe
* Tiny version is suitable for embedded systems
Click here to Patreon-ize the package maintainer.
To install nuBASIC (Install), run the following command from the command line or from PowerShell:
C:\> choco install nubasic
To upgrade nuBASIC (Install), run the following command from the command line or from PowerShell:
C:\> choco upgrade nubasic
Files
Hide- tools\ChocolateyInstall.ps1
Show
$packageName = 'nubasic' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $bits = Get-ProcessorBits $url = '' $checksum = '' $url64 = 'https://downloads.sourceforge.net/project/nubasic/binary/Windows/nubasic-ide-1.49-setup_x64.zip' $checksum64 = 'AD6263B4AB714BBC9B6489FCF9D620E22D5A12D6E72B5E02052C3E79AB22B6EE' $ahkExe = 'AutoHotKey' $ahkFile = "$toolsDir\nubasic-install.ahk" $EXELocation = "$toolsDir\setup-vs64.exe" if ($bits -eq 32) { Write-Warning "Sorry, nuBASIC is 64 bit only." throw } $packageArgs = @{ packageName = $packageName unzipLocation = $toolsDir fileType = 'ZIP' url = $url checksum = $checksum url64 = $url64 checksum64 = $checksum64 checksumType = 'sha256' } Install-ChocolateyZipPackage @packageArgs $packageArgs = @{ packageName = $packageName fileType = 'EXE' file = $EXELocation silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' validExitCodes = @(0) softwareName = 'nuBASIC*' } Start-Process $ahkExe $ahkFile Write-Host " ** Please wait up to 30 seconds to cancel Microsoft Visual C++ 2017 Redistributabe install." -foreground magenta Write-Host " ** Microsoft Visual C++ 2017 Redistributabe should already be installed as a dependency." -foreground magenta Install-ChocolateyInstallPackage @packageArgs remove-item $EXELocation -Force -ErrorAction 'SilentlyContinue'
- tools\ChocolateyUninstall.ps1
Show
$packageName = 'nubasic' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $ahkExe = 'AutoHotKey' $ahkFile = "$toolsDir\nubasic-uninstall.ahk" Start-Process $ahkExe $ahkFile
- tools\nubasic-install.ahk
Show
#NoEnv SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. Sleep, 30000 If WinExist("Microsoft Visual C++ 2017 Redistributable (x64) - 14.11.25325 Setup") { WinActivate Send !c Sleep 1000 Send !y }
- tools\nubasic-uninstall.ahk
Show
#NoEnv SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. WinWaitActive, Uninstall, , 300 WinActivate Send !y
Virus Scan Results
- nubasic.1.49.nupkg (8708b5de4b83) - ## / 59 - Log in or click on link to see number of positives
- nubasic-ide-1.49-setup_x64.zip (ad6263b4ab71) - ## / 62 - Log in or click on link to see number of positives
Dependencies
-
- autohotkey.portable
- vcredist140 (≥ 14.11.25325)
Package Maintainer(s)
Software Author(s)
Copyright
(c) Antonino Calderone 2014 - 2017
Tags
Release Notes
https://github.com/eantcal/nubasic/releases/
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
nuBASIC (Install) 1.49 | 44 | Tuesday, November 13, 2018 | approved |
nuBASIC (Install) 1.48 | 264 | Monday, July 17, 2017 | approved |
nuBASIC (Install) 1.47 | 174 | Sunday, April 30, 2017 | approved |
Discussion for the nuBASIC (Install) Package
Ground rules:
- This discussion is only about nuBASIC (Install) and the nuBASIC (Install) package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or nuBASIC (Install), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.